国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

關于CSS Reset 那些事(三)之 Normalize-zh.css 出爐

harryhappy / 3566人閱讀

摘要:本章節會完成所有源代碼翻譯整理,最終會整理出中文版本并開源至供大家交流使用。現已將源代碼開源至項目地址源碼解讀上章節對與元素,元素,鏈接,語義化文本,內嵌元素,群組元素等源碼內容已經做了解析,這章節繼續完成表單,表格部分。

前言

上一章節我們對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. 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表單中的一些元素 textareatextbuttonselect 中的字體和字體顏色默認會設置成用戶的字體或者是瀏覽器的字體,并不會從父元素繼承,所以這里重置了這些元素的默認樣式。

/**
 * 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默認的overflowhidden,這里統一為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 */
}

避免 Android 4.0.* 中的 WebKit bug ,該bug會破壞原生的audiovideo的控制器

更正 iOS 中無法設置可點擊的input的問題

統一其他類型的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 */
}

修正 IE 8/9 box-sizing 被設置為content-box的問題

移除 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 */
}

修正 Safari 5 和 Chrome 中appearance被設置為searchfield的問題

修正 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 */
}

修正 IE 6-9 中顏色不能繼承的問題

重置內邊距

/**
 * 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基礎代碼庫?

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/111078.html

相關文章

  • 關于CSS Reset 那些(四) 構架CSS基礎樣式庫

    摘要:現在回到我們這一章節的標題,將它做下補充關于那些事四之基于構架基礎樣式庫基礎庫構思為什么要做基礎庫我上一章節的末尾拋出了幾個問題假設你要做一個游戲單頁面,網頁上并不存在表單內容,那么你就要移除一些冗余的代碼,開始自定義樣式來滿足自己的需求。 前言 先來回顧一下前幾章節,我們都說了哪些內容: CSS Reset 歷史 與 Normalize.css 介紹 Normalize.css...

    mj 評論0 收藏0
  • 關于CSS Reset 那些(四) 構架CSS基礎樣式庫

    摘要:現在回到我們這一章節的標題,將它做下補充關于那些事四之基于構架基礎樣式庫基礎庫構思為什么要做基礎庫我上一章節的末尾拋出了幾個問題假設你要做一個游戲單頁面,網頁上并不存在表單內容,那么你就要移除一些冗余的代碼,開始自定義樣式來滿足自己的需求。 前言 先來回顧一下前幾章節,我們都說了哪些內容: CSS Reset 歷史 與 Normalize.css 介紹 Normalize.css...

    Yu_Huang 評論0 收藏0

發表評論

0條評論

harryhappy

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<