CSS復位能夠在不一樣的瀏覽器上保持一致的樣式風格。您可使用CSS reset 庫Normalize等,也可使用一個更簡化的復位方法:css
* { box-sizing: border-box; margin: 0; padding: 0; }
如今元素的 margin 和 padding 已爲0,box-sizing
能夠管理您的CSS盒模型佈局。html
注意:若是你遵循接下來繼承 box-sizing
講解的這個技巧, 你不須要在以上代碼中添加 box-sizing
屬性。git
box-sizing
從 html
元素繼承 box-sizing
:github
html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; }
如此在插件或其它組件裏改變 box-sizing
變得簡單。web
:not()
選擇器來決定表單是否顯示邊框先爲元素添加邊框瀏覽器
/* 添加邊框 */ .nav li { border-right: 1px solid #666; }
爲最後一個元素去除邊框app
/* 去掉邊框 */ .nav li:last-child { border-right: none; }
不過不要這麼作,使用 :not()
僞類來達到一樣的效果:ide
.nav li:not(:last-child) { border-right: 1px solid #666; }
固然,你也可使用 .nav li + li
或者 .nav li:first-child ~ li
,可是 :not()
更加清晰,具備可讀性。svg
body
元素添加行高沒必要爲每個 <p>
,<h*>
元素逐一添加 line-height
,直接添加到 body
元素:佈局
body { line-height: 1.5; }
文本元素能夠很容易地繼承 body
的樣式。
不!這毫不是黑魔法,真的能夠垂直居中任何元素:
html, body { height: 100%; margin: 0; } body { -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: -webkit-flex; display: flex; }
注意: IE11 對 flexbox 的支持有點 bug。
使列表的每項都由逗號分隔:
ul > li:not(:last-child)::after { content: ","; }
因最後一項不加逗號,可使用 :not()
僞類。
注意:這一技巧對於無障礙,特別是屏幕閱讀器而言並不理想。並且複製粘貼並不會帶走CSS生成的內容,須要注意。
nth-child
來選擇元素使用負的 nth-child
能夠選擇 1 至 n 個元素。
li { display: none; } /* 選擇第 1 至第 3 個元素並顯示出來 */ li:nth-child(-n+3) { display: block; }
或許你已經掌握了如何使用 :not()
這個技巧,試下這個:
/* 選擇第 1 至第 3 個元素並顯示出來 */ li:not(:nth-child(-n+3)) { display: none; }
如此簡單!
沒有理由不使用 SVG 圖標:
.logo { background: url("logo.svg"); }
SVG 在全部分辨率下均可以良好縮放,而且支持全部 IE9 之後的瀏覽器,丟掉你的 .png, .jpg, 或 .gif-jif-whatev 文件吧。
注意: 針對僅有圖標的按鈕,若是 SVG 沒有加載成功的話,如下樣式對無障礙有所幫助:
.no-svg .icon-only:after { content: attr(aria-label); }
這個名字可能比較陌生,不過通用選擇器 (*
) 和 相鄰兄弟選擇器 (+
) 一塊兒使用,效果非凡:
* + * { margin-top: 1.5em; }
更多 「形似貓頭鷹」 的選擇器,可參考 A List Apart 上面 Heydon Pickering 的文章
max-height
來創建純 CSS 的滑塊max-height
與 overflow hidden 一塊兒來創建純 CSS 的滑塊:
.slider { max-height: 200px; overflow-y: hidden; width: 300px; } .slider:hover { max-height: 600px; overflow-y: scroll; }
鼠標移入滑塊元素時增大它的 max-height
值,即可以顯示溢出部分。
table-layout: fixed
可讓每一個格子保持等寬:
.calendar { table-layout: fixed; }
無痛的 table 佈局。
與其使用 nth-
, first-
, 和 last-child
去除列之間多餘的間隙,不如使用 flexbox 的 space-between
屬性:
.list { display: flex; justify-content: space-between; } .list .person { flex-basis: 23%; }
列之間的間隙老是均勻相等。
當 <a>
元素沒有文本內容,但有 href
屬性的時候,顯示它的 href
屬性:
a[href^="http"]:empty::before { content: attr(href); }
至關簡便。
給 「默認」 連接定義樣式:
a[href]:not([class]) { color: #008000; text-decoration: underline; }
經過 CMS 系統插入的連接,一般沒有 class
屬性,以上樣式能夠甄別它們,並且不會影響其它樣式。
通用選擇器 (*
) 跟元素一塊兒使用,能夠保持一致的垂直節奏:
.intro > * { margin-bottom: 1.25rem; }
一致的垂直節奏能夠提供視覺美感,加強內容的可讀性。
要建立具備固定比例的一個盒子,全部你須要作的就是給 div 設置一個 padding:
.container { height: 0; padding-bottom: 20%; position: relative; } .container div { border: 2px dashed #ddd; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
使用20%的padding-bottom使得框等於其寬度的20%的高度。與視口寬度無關,子元素的div將保持其寬高比(100%/ 20%= 5:1)。
只要一點CSS就能夠美化破碎的圖象:
img { display: block; font-family: Helvetica, Arial, sans-serif; font-weight: 300; height: auto; line-height: 2; position: relative; text-align: center; width: 100%; }
以添加僞元素的法則來顯示用戶信息和URL的引用:
img:before { content: "We're sorry, the image below is broken :("; display: block; margin-bottom: 10px; } img:after { content: "(url: " attr(src) ")"; display: block; font-size: 12px; }
瞭解更多關於這類樣式的技巧 Ire Aderinokun的 原帖.
rem
來調整全局大小;用 em
來調整局部大小在根元素設置基本字體大小後 (html { font-size: 100%; }
), 使用 em
設置文本元素的字體大小:
h2 { font-size: 2em; } p { font-size: 1em; }
而後設置模塊的字體大小爲 rem
:
article { font-size: 1.25rem; } aside .module { font-size: .9rem; }
如今,每一個模塊變得獨立,更容易、靈活的樣式便於維護。
這是一個自定義用戶樣式表的不錯的技巧。避免在加載頁面時自動播放。若是沒有靜音,則不顯示視頻:
video[autoplay]:not([muted]) { display: none; }
再次,咱們利用了 :not()
的優勢。
:root
來控制字體彈性在響應式佈局中,字體大小應須要根據不一樣的視口進行調整。你能夠計算字體大小根據視口高度的字體大小和寬度,這時須要用到:root
:
:root { font-size: calc(1vw + 1vh + .5vmin); }
如今,您可使用 root em
body { font: 1rem/1.6 sans-serif; }
當觸發<select>
的下拉列表時,爲了不表單元素在移動瀏覽器(IOS Safari 等等)上的縮放,加上font-size
:
input[type="text"],
input[type="number"],
select,
textarea { font-size: 16px; }
這些技巧適用於最新版的 Chrome, Firefox, Safari, Opera, Edge, 以及 IE11。