美文网首页网页前端后台技巧(CSS+HTML)
在vue中使用Normalize初始化样式详解

在vue中使用Normalize初始化样式详解

作者: 与你何干_1bc9 | 来源:发表于2019-09-27 12:55 被阅读0次

    严正声明:本文非原创文章。
    文章原作者:爱上在路上_e432
    原作链接:https://www.jianshu.com/p/34533b45aac1

    安装使用Normalize

    首先安装normalize.css:

    npm i normalize.css --save-dev
    或
    yarn add normalize.css
    
    //main.js
    import 'normalize.css'
    

    遇到的问题:

    import 'normalize.css'报错:原因没有安装:css-loader   和style-loader
    

    解决方案:

    npm install css-loader style-loader
    或
    yarn add css-loader
    yarn add style-loader
    

    Normalize的作用:统一浏览器的初始样式

    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中就不会有这样的问题,因为在我们的准则中对多选择器的使用时非常谨慎的,我们仅会有目的地对目标元素设置样式。

    image

    4. Normalize.css 是模块化的

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

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

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

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

    -----------------------------------------------------------------------------------------------分割线--------------------------------------------------------------------------------------------------------------------

    以下是详解部分:

    html与body 元素

    /**
    * 1. 设置全局的字体为sans-serif, 关于中文字体的设置可参考Amaze UI.
    * 2. 防止 iOS 横屏字号放大,同时保证在PC上 zoom 功能正常.
    */
    html {
      font-family: sans-serif; /* 1 */
      -ms-text-size-adjust: 100%; /* 2 */
      -webkit-text-size-adjust: 100%; /* 2 */
    }
    

    第2个问题场景是这样:
    苹果IOS设备调整后会自动调整文字的大小,按照苹果的意图是为了提升用户体验.
    比如竖屏状态下是14px,转换为横屏时就变成了20px,把text-size-adjust:100%就不会调整字体大小了。
    如果把值设置为'text-size-adjust:none',那么就会导致用户无法放大缩小字体了。

    /**
    * 修复浏览器默认边距,统一效果.
    */
    body {
      margin: 0;
    }
    

    HTML5 元素 display definitions

    这个问题想必大家都已经非常清楚,当低版本浏览器遇到不识别的元素时,会默认把他们当成内联元素(inline),这里重新定义成为block元素。

    /**
    * 修复 IE 8/9,HTML5新元素不能正确显示的问题,定义为block的元素
    * 修复 IE 10/11,details 和 summary 定义为 block 的元素
    * 修复 IE 11,main定义为 block 的元素.
    */
    article,
    
    aside,
    
    details,
    
    figcaption,
    
    figure,
    
    footer,
    
    header,
    
    hgroup,
    
    main,
    
    menu,
    
    nav,
    
    section,
    
    summary {
    
      display: block;
    
    }
    

    progress是HTML5的新标签,可以定义进度条,但是它Chrome, Firefox, 和Opera并没有已baseline垂直对齐。

    /**
    * 1. 修复 IE 8/9, HTML5新元素不能正确显示的问题,定义为inline-block元素
    * 2. 修复Chrome, Firefox, Opera的progress元素没有以baseline垂直对齐.
    */
    audio,canvas,progress,video {
      display: inline-block; /* 1 */
      vertical-align: baseline; /* 2 */
    }
    

    对不支持controls属性的浏览器, audio元素给以隐藏.

    移除iOS5设备中多余的高度.

    /**
    * 对不支持controls属性的浏览器, audio元素给以隐藏.
    * 移除iOS5设备中多余的高度.
    * 在IE8之前的浏览器是不支持controls属性, 这里的办法是直接隐藏该元素
    */
    audio:not([controls]) {
      display: none;height: 0;
    }
    
    

    修复 IE 7/8/9, Firefox 3 和 Safari 4 中hidden属性不起作用的问题.

    在 IE, Safari, Firefox 22- 中隐藏template元素

    /**
    * 修复 IE 7/8/9, Firefox 3 和 Safari 4 中hidden属性不起作用的问题.
    * 在 IE, Safari, Firefox 22- 中隐藏template元素
    */
    [hidden],template {
      display: none;
    }
    

    去掉 IE 10+ 点击链接时的灰色背景.

    /**
    * 去掉 IE 10+ 点击链接时的灰色背景.
    */
    a {
      background-color: transparent;
    }
    

    去掉点击时的outline焦点框,同时保证使用键盘可以显示焦点框,这个操作针对所有浏览器

    /**
    * 去掉点击时的outline焦点框,同时保证使用键盘可以显示焦点框,这个操作针对所有浏览器
    * Improve readability of focused elements when they are also in an
    * active/hover state.
    */
    a:active,a:hover {
      outline: 0;
    }
    

    修正abbr元素在 Firefox 外其他浏览器没有下划线的问题

    语义abbr标签是表示简称或缩写,自身的title属性是完整版,但是此标签在Firefox下默认有下边框,而其他浏览器中没有,这里统一了样式。

    /**
    
    * 修正abbr元素在 Firefox 外其他浏览器没有下划线的问题
    
    */
    
    abbr[title] {
    
    border-bottom: 1px dotted;
    
    }
    

    Firefox3+,Safari4/5 和 Chrome 中统一设置为粗体

    Firefox 3+, Safari 和 Chrome 给b和strong设置的属性是bolder,而不是bold,这里统一了样式。

    /**
    
    * Firefox3+,Safari4/5 和 Chrome 中统一设置为粗体
    
    */
    
    b,
    
    strong {
    
    font-weight: bold;
    
    }
    

    修正 Safari5 和 Chrome 中dfn 标签没有样式的问题.

    dfn 标签可标记那些对特殊术语或短语的定义,在Safari 和Chrome 里不是斜体,在这里统一了样式。

    /**
    
    * 修正 Safari5 和 Chrome 中没有样式的问题.
    
    */
    
    dfn {
    
    font-style: italic;
    
    }
    

    修复 Firefox 4+,Safari 5 和 Chrome 中section和article内的h1字体大小

    /**
    
    * 修复 Firefox 4+,Safari 5 和 Chrome 中section和article内的h1字体大小
    
    */
    
    h1 {
    
    font-size: 2em;
    
    margin: 0.67em 0;
    
    }
    

    修复mark标签 IE 6/9, Safari 5 和 Chrome中样式不呈现的问题.

    mark标签用来突出显示部分文本,设置后会有一个高亮背景,但是此标签是HTML5中的新标签,在低版本浏览器并不识别,所以需要重置样式。

    /**
    
    * 修复 IE 6/9, Safari 5 和 Chrome中样式不呈现的问题.
    
    */
    
    mark {
    
    background: #ff0;
    
    color: #000;
    
    }
    

    在所有浏览器中统一small的字体大小.

    small标签在 HTML 4.01 就已经存在,HTML5 中增强了它的寓意,表示旁注信息,不过此标签在各个浏览器中呈现的字体大小不一样,在这里做了统一

    /**
    
    * 在所有浏览器中统一small的字体大小.
    
    */
    
    small {
    
    font-size: 80%;
    
    }
    

    防止所有浏览器中的sub和sup影响行高.

    sup和sub两个标签是用来表示上标和下标,据HTML标准中对small,sub和sup的大小要求都是smaller,但是如上所示normalize.css给small设的是80%,而sub和sup却是75%,所以为了保持一致,且不影响其他元素的行高,把两者的line-height设为0,然后设置它的垂直以baseline开始,设置top和bottom手动设置两者偏移量

    /**
    
    * 防止所有浏览器中的sub和sup影响行高.
    
    */
    
    sub,
    
    sup {
    
    font-size: 75%;
    
    line-height: 0;
    
    position: relative;
    
    vertical-align: baseline;
    
    }
    
    sup {
    
    top: -0.5em;
    
    }
    
    sub {
    
    bottom: -0.25em;
    
    }
    

    去除 IE6-9 和 Firefox 3 中a内部img元素默认的边框.

    
    /**
    
    * 去除 IE6-9 和 Firefox 3 中a内部img元素默认的边框.
    在旧版本的浏览器中,图片默认会有一个奇丑无比的蓝色边框,这里进行清除,统一样式。
    
    */
    
    img {
    
    border: 0;
    
    }
    

    修复 IE9/10/11 中的overflow的怪异表现.

    /**
    
    * 修复 IE9/10/11 中的overflow的怪异表现.
    
    */
    
    svg:not(:root) {
    
    overflow: hidden;
    
    }
    

    修复 IE 8/9、Safari中margin失效.

    figure 是HTML5的新标签,用做文档插图,但它在 IE 8/9 and Safari 中的默认margin失效,这里做了统一设置。

    /**
    
    * 修复 IE 8/9、Safari中margin失效.
    
    */
    
    figure {
    
    margin: 1em 40px;
    
    }
    

    修正 Firefox 和其他浏览器之间的差异.

    在 Firefox 中,hr元素的默认样式很多,和其它浏览器主要的差异有两点: 1.设置了height为2px; 2.box-sizing为border-box; 此样式对这两个问题进行重置,进行统一

    /**
    
    * 修正 Firefox 和其他浏览器之间的差异.
    
    */
    
    hr {
    
    box-sizing: content-box;
    
    height: 0;
    
    }
    

    标签设置滚动条,内容溢出时出现.

    大部分浏览器的pre在overflow的时候会直接溢出去, 这里加上overflow:auto让它出现滚动条

    /**
    
    * 标签设置滚动条,内容溢出时出现.
    
    */
    
    pre {
    
    overflow: auto;
    
    }
    

    用于修复 Safari 5 和 Chrome 中奇怪的字体设置,统一字体样式

    /**
    
    * Address odd `em`-unit font size rendering in all browsers.
    
    */
    
    code,
    
    kbd,
    
    pre,
    
    samp {
    
    font-family: monospace, monospace;
    
    font-size: 1em;
    
    }
    

    表单 Forms

    有一些浏览器会把form表单中的一些元素 textarea, text, button, select 中的字体和字体颜色默认会设置成用户的字体或者是浏览器的字体, 并不会从父元素继承, 所以这里重置了这些元素的默认样式。

    /**
    
    * 1\. 修正所有浏览器中颜色不继承的问题.
    
    *    Known issue: affects color of disabled elements.
    
    * 2\. 修正所有浏览器中字体不继承的问题.
    
    * 3\. 修正 Firefox 3+, Safari5 和 Chrome 中外边距不同的问题.
    
    */
    
    button,
    
    input,
    
    optgroup,
    
    select,
    
    textarea {
    
    color: inherit; /* 1 */
    
    font: inherit; /* 2 */
    
    margin: 0; /* 3 */
    
    }
    

    统一 IE 8/9/10/11 overflow属性为visible.

    在 IE 8/9/10/11里的button默认的overflow是hidden,这里统一为visible

    /**
    
    * 统一 IE 8/9/10/11 overflow属性为visible.
    
    */
    
    button {
    
    overflow: visible;
    
    }
    

    统一各浏览器text-transform不会继承的问题

    /**
    
    * Address inconsistent `text-transform` inheritance for `button` and `select`.
    
    * All other form control elements do not inherit `text-transform` values.
    
    * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
    
    * Correct `select` style inheritance in Firefox.
    
    */
    
    button,
    
    select {
    
    text-transform: none;
    
    }
    

    修复按钮样式不统一

    这里将可点击的按钮,统一设置鼠标样式为pointer,提高了可用性

    /**
    
    * 1. 避免 Android 4.0.* 中的 WebKit bug ,该bug会破坏原生的audio和video的控制器
    
    * 2\. 更正 iOS 中无法设置可点击的input的问题.
    
    * 3\. 统一其他类型的input的光标样式.
    
    */
    
    button,
    
    html input[type="button"], /* 1 */
    
    input[type="reset"],
    
    input[type="submit"] {
    
    -webkit-appearance: button; /* 2 */
    
    cursor: pointer; /* 3 */
    
    }
    
    /**
    
    * 重置按钮禁用时光标样式.
    
    */
    
    button[disabled],
    
    html input[disabled] {
    
    cursor: default;
    
    }
    
    /**
    
    * 移除 Firefox 4+ 的内边距.
    
    */
    
    button::-moz-focus-inner,
    
    input::-moz-focus-inner {
    
    border: 0;
    
    padding: 0;
    
    }
    

    统一设置行高为normal

    Firefox浏览器会默认设置input[type="button"]的行高为normal !important,这里统一样式

    /**
    
    * Address Firefox 4+ setting `line-height` on `input` using `!important` in
    
    * the UA stylesheet.
    
    */
    
    input {
    
    line-height: normal;
    
    }
    

    修正 IE 8/9 box-sizing 被设置为content-box的问题

    移除 IE 8/9 中多余的内边距

    /**
    
    * It's recommended that you don't attempt to style these elements.
    
    * Firefox's implementation doesn't respect box-sizing, padding, or width.
    
    *
    
    * 1\. Address box sizing set to `content-box` in IE 8/9/10.
    
    * 2\. Remove excess padding in IE 8/9/10.
    
    */
    
    input[type="checkbox"],
    
    input[type="radio"] {
    
    box-sizing: border-box; /* 1 */
    
    padding: 0; /* 2 */
    
    }
    

    修正 Chrome 中 input [type="number"] 在特定高度和 font-size 时,下面一个箭头光标变成cursor: text 效果

    /**
    
    * Fix the cursor style for Chrome's increment/decrement buttons. For certain
    
    * `font-size` values of the `input`, it causes the cursor style of the
    
    * decrement button to change from `default` to `text`.
    
    */
    
    input[type="number"]::-webkit-inner-spin-button,
    
    input[type="number"]::-webkit-outer-spin-button {
    
    height: auto;
    
    }
    

    修正 Safari 5 和 Chrome 中appearance被设置为searchfield的问题

    修正 Safari 5 和 Chrome 中box-sizing被设置为border-box的问题

    searchfield是CSS3的属性,它可以让一个div元素看上去像任何元素,但是浏览器支持性并不好,

    /**
    
    * 1\. Address `appearance` set to `searchfield` in Safari and Chrome.
    
    * 2\. Address `box-sizing` set to `border-box` in Safari and Chrome.
    
    */
    
    input[type="search"] {
    
    -webkit-appearance: textfield; /* 1 */
    
    box-sizing: content-box; /* 2 */
    
    }
    

    移除原生默认样式,统一search的输入框样式

    /**
    
    * Remove inner padding and search cancel button in Safari and Chrome on OS X.
    
    * Safari (but not Chrome) clips the cancel button when the search input has
    
    * padding (and `textfield` appearance).
    
    */
    
    input[type="search"]::-webkit-search-cancel-button,
    
    input[type="search"]::-webkit-search-decoration {
    
    -webkit-appearance: none;
    
    }
    

    定义一致的边框、外边距和内边距

    /**
    
    * 定义一致的边框、外边距和内边距.
    
    */
    
    fieldset {
    
    border: 1px solid #c0c0c0;
    
    margin: 0 2px;
    
    padding: 0.35em 0.625em 0.75em;
    
    }
    

    修正 IE 6-9 中颜色不能继承的问题

    重置内边距

    /**
    
    * 1\. Correct `color` not being inherited in IE 8/9/10/11\. 修正 IE 6-9 中颜色不能继承的问题
    
    * 2\. Remove padding so people aren't caught out if they zero out fieldsets.重置内边距
    
    */
    
    legend {
    
    border: 0; /* 1 */
    
    padding: 0; /* 2 */
    
    }
    

    移除 IE8-11 中默认的垂直滚动条.

    /**
    
    * 移除 IE8-11 中默认的垂直滚动条.
    
    */
    
    textarea {
    
    overflow: auto;
    
    }
    

    统一设置optgroup元素font-weight始终为bold

    /**
    
    * Don't inherit the `font-weight` (applied by a rule above).
    
    * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
    
    */
    
    optgroup {
    
    font-weight: bold;
    
    }
    

    表格 Tables

    /**
    
    * 合并单元格边框,重置内边距 Remove most spacing between table cells.
    
    */
    
    table {
    
    border-collapse: collapse;
    
    border-spacing: 0;
    
    }
    
    td,
    
    th {
    
    padding: 0;
    
    }
    

    试了一下发现确实保留了很多初始样式(甚至包括无序列表的圆点)感觉用起来没有 * 暴力

    不过这个可以作为解决浏览器样式不兼容的简单文档

    233
    nice

    作者:爱上在路上_e432

    链接:https://www.jianshu.com/p/34533b45aac1

    来源:简书

    简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

    (小声bb:还不是因为原作根本没有可读性)
    --------------------参考文献-----------------------

    webpushhttps://www.cnblogs.com/webpush/p/4974063.html

    相关文章

      网友评论

        本文标题:在vue中使用Normalize初始化样式详解

        本文链接:https://www.haomeiwen.com/subject/rawnectx.html