通用样式设置
Posted 一脚一个坑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通用样式设置相关的知识,希望对你有一定的参考价值。
*,
::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;
}
以上是关于通用样式设置的主要内容,如果未能解决你的问题,请参考以下文章