移動端的一些常用css的設置 .(2)

在平時移動端開發的時候,終結了一些很好用的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;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章