首页 > 其他 > 详细

通用样式设置

时间:2018-04-16 19:17:32      阅读:164      评论:0      收藏:0      [点我收藏+]
*,
::after,
::before{
margin: 0;
padding: 0;
/*盒子模型*/
box-sizing: border-box;
-webkit-box-sizing: border-box;
/*字体*/
font-family: ‘微软雅黑‘, sans-serif;
/*取消默认点击高亮效果*/
-webkit-tap-highlight-color: transparent;
}

/*去除默认的样式*/
ol,ul{
list-style: none;
}
input{
border-style: none;
/*移除iOS原生显示样式*/
-webkit-appearance: none;
}
/*去掉 a 标签的下划线*/
a{
text-decoration: none;
}
.f_l{
float: left;
}
.f_r{
float: right;
}
/*清楚浮动*/
.clear_fix::before,
.clear_fix::after{
content: ‘‘;
display: block;
height: 0;
line-height: 0;
clear: both;
visibility: hidden;
}

通用样式设置

原文:https://www.cnblogs.com/chzlh/p/8857913.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!