上一章节介绍了CSS Reset的历史,最后对Normalize.css作了简单的了解,因此从这节开始对源码进行注释翻译与解读,尽量从最根本性的问题了解它在帮咱们作什么?css
回顾:关于CSS Reset 那些事(一)之 历史演变与Normalize.csshtml
前面讲到的分模块解读,就是先黏贴一段源码,而后根据官方提供的注释进行翻译整理,尽量提供案例解析,而后再次进行整理总结,若是你有疑问,能够留言一块儿交流。git
源码地址:https://github.com/necolas/normalize.css/blob/master/normalize.css
源码版本:v3.0.3github
/** * 1. Set default font family to sans-serif. * 2. Prevent iOS and IE text size adjust after device orientation change, * without disabling user 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%
就不会调整字体大小了。web
若是把值设置为'text-size-adjust:none'
,那么就会致使用户没法放大缩小字体了。canvas
/** * Remove default margin. */ body { margin: 0; }
/** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
block
的元素details
和 summary
定义为 block
的元素main
定义为 block
的元素这个问题想必你们都已经很是清楚,当低版本浏览器遇到不识别的元素时,会默认把他们当成内联元素(inline
),这里从新定义成为block
元素。segmentfault
/** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ }
inline-block
元素progress
元素没有以baseline垂直对齐progress
是HTML5的新标签,能够定义进度条,可是它Chrome, Firefox, 和Opera并无已baseline垂直对齐。浏览器
/** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; }
controls
属性的浏览器,audio
元素给以隐藏在IE8以前的浏览器是不支持controls
属性,这里的办法是直接隐藏该元素ide
/** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */ [hidden], template { display: none; }
hidden
属性不起做用的问题template
元素template
标签用于HTML模板,你们应该都是用过HTML模版开发页面,这个标签是按照实际需求添加的,可是模板又不能在界面上显示,因此这里统一了样式,兼容旧浏览器。svg
/** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; }
/** * Improve readability of focused elements when they are also in an * active/hover state. */ a:active, a:hover { outline: 0; }
outline
焦点框,同时保证使用键盘能够显示焦点框,这个操做针对全部浏览器/** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; }
abbr
元素在 Firefox 外其余浏览器没有下划线的问题语义abbr
标签是表示简称或缩写,自身的title
属性是完整版,可是此标签在Firefox下默认有下边框,而其余浏览器中没有,这里统一了样式。
/** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; }
Firefox 3+, Safari 和 Chrome 给b
和strong
设置的属性是bolder
,而不是bold
,这里统一了样式。
/** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; }
dfn
标签可标记那些对特殊术语或短语的定义,在Safari 和Chrome 里不是斜体,在这里统一了样式。
/** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; }
section
和article
内的h1
字体大小/** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; }
mark
标签用来突出显示部分文本,设置后会有一个高亮背景,可是此标签是HTML5中的新标签,在低版本浏览器并不识别,因此须要重置样式。
/** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; }
small
的字体大小small
标签在 HTML 4.01 就已经存在,HTML5 中加强了它的寓意,表示旁注信息,不过此标签在各个浏览器中呈现的字体大小不同,在这里作了统一
/** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; }
sub
和sup
影响行高sup
和sub
两个标签是用来表示上标和下标,据HTML标准中对small
,sub
和sup
的大小要求都是smaller
,可是如上所示normalize.css
给small
设的是80%,而sub
和sup
倒是75%,因此为了保持一致,且不影响其余元素的行高,把二者的line-height
设为0
,而后设置它的垂直以baseline开始,设置top
和bottom
手动设置二者偏移量
/** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; }
a
内部img
元素默认的边框在旧版本的浏览器中,图片默认会有一个奇丑无比的蓝色边框,这这里进行清除,统同样式。
/** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; }
overflow
的怪异表现/** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 1em 40px; }
figure
是HTML5的新标签,用作文档插图,但它在 IE 8/9 and Safari 中的默认margin
失效,这里作了统一设置。
/** * Address differences between Firefox and other browsers. */ hr { box-sizing: content-box; height: 0; }
在 Firefox 中,hr
元素的默认样式不少,和其它浏览器主要的差别有两点:
1.设置了height
为2px
;
2.box-sizing
为border-box
;
此样式对这两个问题进行重置,进行统一
/** * Contain overflow in all browsers. */ pre { overflow: auto; }
大部分浏览器的pre
在overflow
的时候会直接溢出去,这里加上overflow:auto
让它出现滚动条
/** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; }
此章节咱们对Normalize.css中设置的 html与body元素,HTML5元素,连接,语义化文本,内嵌元素,群组元素 的源码进行详细的解读,发现正如其说的同样,它不只仅帮咱们修复了浏览器的默认bug,还保留了许多标签的默认值,尤为是语义化标签,坚持他们存在的意义。
因为源码部分过长,因此对于源码的解析会分为两节,下一节咱们继续来介绍:
表单:表单每每存在不少问题,如常见的各类不继承问题,这这里都会获得修复
表格:表格的默认边距和边框真的很丑,须要修复修复
下一节会完成全部模块对normalize.css源码解读,届时会整理一份normalize-zh.css
中文注释的版本上传至Github,供你们参考使用,敬请期待...