CSS常用标签

/*类选择器*/

.style1{

font-size:30px; //设置字体大小

font-style:italic//设置字体斜体

font-weight:bold;//设置字体加粗

text-decoration: underline;//字体下划线

}

超链接

a:LINK {
text-decoration: none;//点击前无下划线,字体是黑色
color: black;
}

a:HOVER {
text-decoration: underline;//鼠标移动到超链接时显示下划线
}

a:VISITED {
color: red;//点击超链接后字体颜色为红色
}

a:link img{
filter:gray;//过滤,将图片设置为黑白
}

/*id选择器*/
#style1{

}
/*html选择器*/
body{


}

#style1{
color:black;
font-size: xx-large;
}
/*父子选择器*/
#style1 span{
color:red;
font-style: italic;
}

你可能感兴趣的:(CSS常用标签)