歡迎光臨
每天分享高質量文章

關於CSS Reset那些事(3):架構CSS基礎庫

作者:Alsiso

網址:http://alsiso.github.io/2015/07/28/cssreset-3/

前言

上一章節我們對Normalize.css原始碼進行解析,但是由於其程式碼過長導致不宜瀏覽,所以表單Forms,表格Table部分內容放在此章節介紹。本章節會完成所有原始碼翻譯整理,最終會整理出Normalize-zh.css中文版本並開源至Github供大家交流使用。

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. 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 */

}

  1. 修正所有瀏覽器中顏色不繼承的問題
  2. 修正所有瀏覽器中字型不繼承的問題
  3. 修正 Firefox 3+, Safari5 和 Chrome 中外邊距不同的問題

有一些瀏覽器會把form表單中的一些元素 textarea,text,button,select 中的字型和字型顏色預設會設定成使用者的字型或者是瀏覽器的字型,並不會從父元素繼承,所以這裡重置了這些元素的預設樣式。

/**

* 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

/**

* 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. 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 */

}

  1. 避免 Android 4.0.* 中的 WebKit bug ,該bug會破壞原生的audio和video的控制器
  2. 更正 iOS 中無法設定可點選的input的問題
  3. 統一其他型別的input的游標樣式

這裡將可點選的按鈕,統一設定滑鼠樣式為pointer,提高了可用性

/**

* Re-set default cursor for disabled elements.

*/

button[disabled],

html input[disabled] {

cursor: default;

}

  • 重置按鈕禁用時游標樣式

/**

* Remove inner padding and border in Firefox 4+.

*/

button::-moz-focus-inner,

input::-moz-focus-inner {

border: 0;

padding: 0;

}

  • 移除 Firefox 4+ 的內邊距

/**

* Address Firefox 4+ setting `line-height` on `input` using `!important` in

* the UA stylesheet.

*/

input {

line-height: normal;

}

  • 統一設定行高為normal

Firefox瀏覽器會預設設定input[type=”button”]的行高為normal !important,這裡統一樣式

/**

* 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 */

}

  1. 修正 IE 8/9 box-sizing 被設定為content-box的問題
  2. 移除 IE 8/9 中多餘的內邊距

/**

* 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;

}

  • 修正 Chrome 中 input [type=”number”] 在特定高度和 font-size 時,下麵一個箭頭游標變成cursor: text 效果

/**

* 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 */

}

  1. 修正 Safari 5 和 Chrome 中appearance被設定為searchfield的問題
  2. 修正 Safari 5 和 Chrome 中box-sizing被設定為border-box的問題

searchfield是CSS3的屬性,它可以讓一個div元素看上去像任何元素,但是瀏覽器支援性並不好,

/**

* 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;

}

  • 移除原生預設樣式,統一search的輸入框樣式

/**

* Define consistent border, margin, and padding.

*/

fieldset {

border: 1px solid #c0c0c0;

margin: 0 2px;

padding: 0.35em 0.625em 0.75em;

}

  • 定義一致的邊框、外邊距和內邊距

/**

* 1. Correct `color` not being inherited in IE 8/9/10/11.

* 2. Remove padding so people aren’t caught out if they zero out fieldsets.

*/

legend {

border: 0; /* 1 */

padding: 0; /* 2 */

}

  1. 修正 IE 6-9 中顏色不能繼承的問題
  2. 重置內邊距

/**

* Remove default vertical scrollbar in IE 8/9/10/11.

*/

textarea {

overflow: auto;

}

  • 移除 IE8-11 中預設的垂直捲軸

/**

* 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;

}

  • 統一設定optgroup元素font-weight始終為bold

表格 Tables

/**

* Remove most spacing between table cells.

*/

table {

border-collapse: collapse;

border-spacing: 0;

}

td,

th {

padding: 0;

}

總結

經過兩個章節對Normalize.css的原始碼進行了學習,清晰的瞭解了它的工作原理,作為傳統CSS Reset替代者,它當之無愧,為大家提供一套很完整的跨瀏覽器解決方案。

不過,你是否會有和我一樣的需求,比如開發一個小站,或者一個PC端的系統時,也許只需要一些簡單的基礎模組,比如我只想要簡單的樣式重置,統一各瀏覽器的效果就好,並不需要HTML5以及CSS3的一些問題修複。

那麼下一章,我們來介紹,如果制定屬於自己的 CSS基礎程式碼庫?

贊(0)

分享創造快樂