您的位置:首页 > Web前端 > CSS

css的全局样式

2016-07-06 13:56 441 查看
*{
margin: 0; padding: 0;
box-sizing: border-box;

}

body{
width: 100%;
font-size: 12px;
font-family: microsoft yahei,"微软雅黑";

}

ul,ol,li{
list-style: none;

}

a{
text-decoration: none;
color: #666666;

}

img{
border: none;

}

.clearfix:after{
content: ".";
clear: both;
display: block;
height: 0;
visibility: hidden;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css html