css的一些记不住属性集合

css属性

liu

1
2
3
4
5
6
7
text-decoration: none;/*链接下划线去除*/
box-sizing: border-box;/*盒子宽度从内容content变成border+padding+content*/
text-align: center;
border-color: red;
text-indent: 20px;/*首行缩进*/
background: url("../img/list-yellow.jpg") 17px 20px no-repeat;
background-position-y: -22px;
1
2
3
4
5
6
7
8
9
.clearfix:after{
/*清楚浮动*/
content: ' ';
display: block;
height: 0px;
line-height: 0px;
clear: both;
zoom: 1;
}

height=line-height可以让文字自动垂直居中