前言
上一章节我们对Normalize.css源码进行解析,但是由于其代码过长导致不宜浏览,所以表单
Forms,表格
Table部分内容放在此章节介绍。本章节会完成所有源代码翻译整理,最终会整理出
Normalize-zh.css中文版本并开源至Github供大家交流使用。
回顾:关于CSS Reset 那些事(二)之 Normalize.css 源码解读
Normalize-zh.css 出炉
Normalize-zh.css是根据对
Normalize.css的源码分析后,经过学习与整理,将源代码中的英文注释文档翻译为中文版本,方便国内的开发者学习和使用,我深知此版本一定有很多不足,希望能得到大家的理解和支持,同样也很愿意和大家一起完善。
现已将源代码开源至Github
项目地址:https://github.com/Alsiso/normalize-zh
Normalize 源码解读 (2)
上章节对 html与body元素,HTML5元素,链接,语义化文本,内嵌元素,群组元素 等源码内容已经做了解析,这章节继续完成表单Forms,表格
Table部分。
源码地址:https://github.com/necolas/normalize.css/blob/master/normalize.css
源码版本:v3.0.3
表单 Forms
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } |
- 修正所有浏览器中颜色不继承的问题
- 修正所有浏览器中字体不继承的问题
- 修正 Firefox 3+, Safari5 和 Chrome 中外边距不同的问题
有一些浏览器会把form表单中的一些元素
textarea,
text,
button,
select 中的字体和字体颜色默认会设置成用户的字体或者是浏览器的字体,并不会从父元素继承,所以这里重置了这些元素的默认样式。
1 2 3 4 5 6 7 |
/** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } |
- 统一 IE 8/9/10/11
overflow属性为visible
在 IE 8/9/10/11里的button默认的
overflow是
hidden,这里统一为
visible
1 2 3 4 5 6 7 8 9 10 11 |
/** * 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; } |
- 统一各浏览器
text-transform不会继承的问题
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } |
- 避免 Android 4.0.* 中的 WebKit bug ,该bug会破坏原生的
audio和
video的控制器
更正 iOS 中无法设置可点击的
input的问题
- 统一其他类型的
input的光标样式
这里将可点击的按钮,统一设置鼠标样式为pointer,提高了可用性
1 2 3 4 5 6 7 8 |
/** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } |
- 重置按钮禁用时光标样式
1 2 3 4 5 6 7 8 9 |
/** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border:n-5812cf3731578280665225-5">button::-moz-focus-inner, input::-moz-focus-inner { border:>
回顾:关于CSS Reset 那些事(二)之 Normalize.css 源码解读 Normalize-zh.css 出炉
现已将源代码开源至Github 项目地址:https://github.com/Alsiso/normalize-zh Normalize 源码解读 (2)上章节对 html与body元素,HTML5元素,链接,语义化文本,内嵌元素,群组元素 等源码内容已经做了解析,这章节继续完成表单 源码地址:https://github.com/necolas/normalize.css/blob/master/normalize.css 源码版本:v3.0.3 表单 Forms
有一些浏览器会把
在 IE 8/9/10/11里的
这里将可点击的按钮,统一设置鼠标样式为
|