slector_span.html
selector.css
/**类选择器*/
.style0
{
font-size: 30px;
color: blue;
font-weight: bold;
font-sytle: normal;
text-decoration: underline;
}
/**id选择器*/
#style2
{
font-size: 30px;
font-weight: bold;
background-color: red;
}
/**html选择器*/
body
{
color: orange;
background-color: black;
}
/**---->html选择器-CSS :link 选择器*/
a:link
{
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
a:visited
{
color : red;
}
阅读(1351) | 评论(0) | 转发(0) |