常见CSS标签


段落首行缩进2个字:

text-indent:2em;

水平居中显示:
margin: 0 auto;

滚动条展示:
overflow: scroll;

去除ul和li前面的小圆圈:
list-style-type:none;

去除连接下划线:
text-decoration: none;

去除a标签的虚边框:
a{blr:expression(this.onFocus=this.blur());}

去除a标签下图片蓝色边框
a img{ border:none; }

取图片的位置:
background-position: 0px -35px;

固定图片位置:
background-attachment:fixed;

垂直居中:
height: 30px;
vertical-align: middle;
line-height: 30px;

呈现块状显示:
display:block;

设置图片的不透明度(0到1,代表透明到不透明):
opacity:0.8;

鼠标样式:
cursor:wait;

你可能感兴趣的:(css,css选择器)