zoukankan      html  css  js  c++  java
  • PC端和移动APP端CSS样式初始化

    CSS样式初始化分为PC端和移动APP端

    1.PC端:使用Normalize.css

    Normalize.css是一种CSS reset的替代方案。

    我们创造normalize.css有下面这几个目的:

    • 保护有用的浏览器默认样式而不是完全去掉它们
    • 一般化的样式:为大部分HTML元素提供
    • 修复浏览器自身的bug并保证各浏览器的一致性
    • 优化CSS可用性:用一些小技巧
    • 解释代码:用注释和详细的文档来

    Normalize.css支持包括手机浏览器在内的超多浏览器,同时对HTML5元素、排版、列表、嵌入的内容、表单和表格都进行了一般化。尽管这个项目基于一般化的原则,但我们还是在合适的地方使用了更实用的默认值。

    Normalize vs Reset

    知道Normalize.css和传统Reset的区别是非常有价值的。

    1. Normalize.css 保护了有价值的默认值

    Reset通过为几乎所有的元素施加默认样式,强行使得元素有相同的视觉效果。相比之下,Normalize.css保持了许多默认的浏览器样式。这就意味着你不用再为所有公共的排版元素重新设置样式。当一个元素在不同的浏览器中有不同的默认值时,Normalize.css会力求让这些样式保持一致并尽可能与现代标准相符合。

    2. Normalize.css 修复了浏览器的bug

    它修复了常见的桌面端和移动端浏览器的bug。这往往超出了Reset所能做到的范畴。关于这一点,Normalize.css修复的问题包含了HTML5元素的显示设置、预格式化文字的font-size问题、在IE9中SVG的溢出、许多出现在各浏览器和操作系统中的与表单相关的bug。

    可以看以下这个例子,看看对于HTML5中新出现的input类型searchNormalize.css是如何保证跨浏览器的一致性的。

    /**
     * 1. Addresses appearance set to searchfield in S5, Chrome
     * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
     */
    
    input[type="search"] {
      -webkit-appearance: textfield; /* 1 */
      -moz-box-sizing: content-box;
      -webkit-box-sizing: content-box; /* 2 */
      box-sizing: content-box;
    }
    
    /**
     * Removes inner padding and search cancel button in S5, Chrome on OS X
     */
    
    input[type="search"]::-webkit-search-decoration,
    input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
    }
    3. Normalize.css 不会让你的调试工具变的杂乱

    使用Reset最让人困扰的地方莫过于在浏览器调试工具中大段大段的继承链,如下图所示。在Normalize.css中就不会有这样的问题,因为在我们的准则中对多选择器的使用时非常谨慎的,我们仅会有目的地对目标元素设置样式。

    A common sight in browser debugging tools when using a CSS reset

    4. Normalize.css 是模块化的

    这个项目已经被拆分为多个相关却又独立的部分,这使得你能够很容易也很清楚地知道哪些元素被设置了特定的值。因此这能让你自己选择性地移除掉某些永远不会用到部分(比如表单的一般化)。

    5. Normalize.css 拥有详细的文档

    Normalize.css的代码基于详细而全面的跨浏览器研究与测试。这个文件中拥有详细的代码说明并在Github Wiki中有进一步的说明。这意味着你可以找到每一行代码具体完成了什么工作、为什么要写这句代码、浏览器之间的差异,并且你可以更容易地进行自己的测试。

    这个项目的目标是帮助人们了解浏览器默认是如何渲染元素的,同时也让人们很容易地明白如何改进浏览器渲染。

    2.移动APP端:

    html {
        box-sizing: border-box;
    }
    
    /*Yes, the universal selector. No, it isn't slow: https://benfrain.com/css-performance-revisited-selectors-bloat-expensive-styles/*/
    * {
        /*This prevents users being able to select text. Stops long presses in iOS bringing up copy/paste UI for example. Note below we specifically switch user-select on for inputs for the sake of Safari. Bug here: https://bugs.webkit.org/show_bug.cgi?id=82692*/
        user-select: none;
        /*This gets -webkit specific prefix as it is a non W3C property*/
        -webkit-tap-highlight-color: rgba(255,255,255,0);
        /*Older Androids need this instead*/
        -webkit-tap-highlight-color: transparent;
        /* Most devs find border-box easier to reason about. However by inheriting we can mix box-sizing approaches.*/
        box-sizing: inherit;
    }
    
    *:before,
    *:after {
        box-sizing: inherit;
    }
    
    /* Switching user-select on for inputs and contenteditable specifically for Safari (see bug link above)*/
    input[type],
    [contenteditable] {
    	user-select: text;
    }
    
    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        /*We will be adding our own margin to these elements as needed.*/
        margin: 0;
        /*You'll want to set font-size as needed.*/
        font-size: 1rem;
        /*No bold for h tags unless you want it*/
        font-weight: 400;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    /*No bold for b tags by default*/
    b {
        font-weight: 400;
    }
    
    /*Prevent these elements having italics by default*/
    em,
    i {
        font-style: normal;
    }
    
    /*Mozilla adds a dotted outline around a tags when they receive tab focus. This removes it. Be aware this is a backwards accessibilty step!*/
    a:focus {
        outline: 0;
    }
    
    input,
    fieldset {
        appearance: none;
        border: 0;
        padding: 0;
        margin: 0;
        /*inputs and fieldset defaults to having a min-width equal to its content in Chrome and Firefox (https://code.google.com/p/chromium/issues/detail?id=560762), we may not want that*/
        min- 0;
        /*Reset the font size and family*/
        font-size: 1rem;
        font-family: inherit;
    }
    
    /* For IE, we want to remove the default cross ('X') that appears in input fields when a user starts typing - Make sure you add your own! */
    input::-ms-clear {
        display: none;
    }
    
    /*This switches the default outline off when an input receives focus (really important for users tabbing through with a keyboard) so ensure you put something decent in for your input focus instead!!*/
    input:focus {
        outline: 0;
    }
    
    input[type="number"] {
        /*Mozilla shows the spinner UI on number inputs unless we use this:*/
        -moz-appearance: textfield;
    }
    
    /*Removes the little spinner controls for number type inputs (WebKit browsers/forks only)*/
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        appearance: none;
    }
    
    /*SVG defaults to inline display which I dislike*/
    svg {
        display: inline-flex;
    }
    
    img {
        /*Make images behave responsively. Here they will scale up to 100% of their natural size*/
        max- 100%;
        /*Make images display as a block (UA default is usually inline)*/
        display: block;
    }


    3.知识扩展
    1.-webkit-tap-highlight-color
    -webkit-tap-highlight-color:rgba(0,0,0,0);//透明度设置为0,去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android)
    -webkit-tap-highlight-color:rgba(255,0,0,0.5);   //利用此属性,设置touch时链接区域高亮为50%的透明红,只在ios上起作用。android上只要使用了此属性就表现为边框。在body上加此属性,这样就保证body的点击区域效果一致了

    2.outline:none
    (1)在pc端为a标签定义这个样式的目的是为了取消ie浏览器下点击a标签时出现的虚线。ie7及以下浏览器还不识别此属性,需要在a标签上添加hidefocus="true"
    (2)input,textarea{outline:none}  取消chrome下默认的文本框聚焦样式
    (3)在移动端是不起作用的,想要去除文本框的默认样式可以使用-webkit-appearance,聚焦时候默认样式的取消是-webkit-tap-highlight-color。看到一些移动端reset文件加了此属性,其实是多余。

    3.-webkit-appearance
    -webkit-appearance: none;//消除输入框和按钮的原生外观,在iOS上加上这个属性才能给按钮和输入框自定义样式 
    不同type的input使用这个属性之后表现不一。text、button无样式,radio、checkbox直接消失
    4.-webkit-user-select
    -webkit-user-select: none; // 禁止页面文字选择 ,此属性不继承,一般加在body上规定整个body的文字都不会自动调整
    5.-webkit-text-size-adjust
    -webkit-text-size-adjust: none; //禁止文字自动调整大小(默认情况下旋转设备的时候文字大小会发生变化),此属性也不继承,一般加在body上规定整个body的文字都不会自动调整 
    6.-webkit-touch-callout
    -webkit-touch-callout:none; // 禁用长按页面时的弹出菜单(iOS下有效) ,img和a标签都要加
    7.-webkit-overflow-scrolling
    -webkit-overflow-scrolling:touch;// 局部滚动(仅iOS 5以上支持)




  • 相关阅读:
    HTTP响应状态码记录
    Linux给指定用户或全部用户(已登录)发送消息
    JS面向对象的程序设计
    Linux下查看/管理当前登录用户及用户操作历史记录
    JS Math对象中一些小技巧
    Linux常用命令学习
    Python学习问题记录
    Python中dir()与help()的使用
    webdriver常用API
    数据库备份表
  • 原文地址:https://www.cnblogs.com/ranyonsue/p/6830618.html
Copyright © 2011-2022 走看看