您的位置:首页 > 移动开发

移动端的一些常用css的设置 .(2)

2018-04-10 19:46 507 查看
在平时移动端开发的时候,终结了一些很好用的css样式设置~~~少说话 多做事

html,body, ul,li, h1, h2, h3, h4, h5, h6, p, ol, input{
margin: 0;
padding: 0
}
ul,li, ol{
list-style: none;
}
i{ font-style: normal; }
body {
font-family: Tahoma, Arial, Roboto, "Droid Sans", "Helvetica Neue", "Droid Sans Fallback", "Heiti SC", sans-self;
}
input{
-webkit-appearance: none;
outline: none
}
a,
input {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a{
text-decoration: none;
}
::-webkit-input-placeholder {
color: mediumvioletred;
text-indent: 5px;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css