移动Web开发基础-reset样式

详细分解

1、禁止ios和android用户选中文字

.css{-webkit-user-select:none;}

2、禁止ios长按时触发系统的菜单,禁止ios&android长按时下载图片

.css{-webkit-touch-callout: none}

3、webkit去除表单元素的默认样式

.css{-webkit-appearance:none;}

4、修改webkit表单输入框placeholder的样式

input::-webkit-input-placeholder{color:#AAAAAA;}
input:focus::-webkit-input-placeholder{color:#EEEEEE;}

5、去除android a/button/input标签被点击时产生的边框 & 去除ios a标签被点击时产生的半透明灰色背景,这里起作用的主要是设置透明度为0。

a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}

6、禁止ios使用-webkit-text-size-adjust调整字体大小(默认情况下旋转设备的时候文字大小会发生变化)

body{-webkit-text-size-adjust: none;}

7、android 上去掉语音输入按钮

input::-webkit-input-speech-button {display: none;}

8、移动端定义字体,移动端没有微软雅黑字体,各系统平台一般用默认字体,关于为什么如此,可以学习一下 移动web页面使用字体的思考。

/* 移动端定义字体的代码 */
body{font-family: "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;}

9、局部滚动(仅iOS 5以上支持)

-webkit-overflow-scrolling:touch;
//一般配合overflow: scroll/auto;使用

10、有时为了布局方便也会重置盒子模型

* {
    box-sizing: border-box;
}

常用重置

移动端web页面开发时常用的重置样式如下,开发时应根据具体情况来修改重置样式。

/* Reset S */
*{
   box-sizing: border-box; 
}
body, h1, h2, h3, h4, h5, h6, hr, p, pre, dl, dt, dd, ul, ol, li, th, td, form, fieldset, legend, button, input, textarea, figure, figcaption, nav, footer, menu, blockquote {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}
address, em, i, b {
    font-style: normal;
}
a, a:hover, a:active, a:visited {
    color: #576B95;
    text-decoration: none;
}
ul, ol, li {
    list-style: none;
}
fieldset, img {
    border: 0;
}
html {
    font-size: 100%;
}
button, input, select, textarea {
    font: 16px/1.5 "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
    outline: none;
}
textarea, input {
    background: none;
    border-radius: 0;
    -webkit-appearance: none;
    resize:none;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
body {
    word-wrap: break-word;
    font: 16px/1.5 "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
    color: #fff;
    background-color: #000;
    max-width: 750px;
    margin: 0 auto;
}
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
/* Reset E */

你可能感兴趣的:(移动端mobile,移动Web开发实战)