:not()
在菜單上添加/取消邊框不少人會這樣給導航添加邊框,而後給最後一個取消掉:html
/* add border */ .nav li { border-right: 1px solid #666; } /* remove border */ .nav li:last-child { border-right: none; }
其實,用CSS3
的:not()
能夠簡化爲下面的代碼:web
.nav li:not(:last-child) { border-right: 1px solid #666; }
固然,你也可使用.nav li + li
甚至.nav li:first-child ~ li
,可是使用:not()
可使意圖更加明確
全部主流瀏覽器均支持:not
選擇器,除了IE8及更早的版本瀏覽器
body
添加line-height
屬性你不須要爲<p>
、<h*>
分別添加line-height
屬性,相反的,只須要添加到body
上便可:ide
body { line-height: 1; }
這樣,文本元素就能夠很容易的從body
繼承該屬性svg
能夠垂直居中任何元素:佈局
html, body { height: 100%; margin: 0; } body { -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: -webkit-flex; display: flex; }
注:flexbox
在IE11下存在一些bug字體
使列表看起來像是用逗號分割的:flex
ul > li:not(:last-child)::after { content: ","; }
經過:not()
僞類去掉最後一個元素後面的逗號優化
nth-child
選取元素使用負的nth-child
在1到n之間選擇元素:flexbox
li { display: none; } /* 選擇第1到3個元素並顯示它們 */ li:nth-child(-n+3) { display: block; }
固然,若是你瞭解:not()
的話,還能夠這麼作:
li:not(:nth-child(-n+3)) { display: none; }
沒什麼理由不使用SVG
做icon
圖標:
.logo { background: url("logo.svg"); }
SVG
對於任何分辨率的縮放效果都很好,而且支持 IE9+全部瀏覽器,因此,放棄使用png、jpg、gif
文件吧
注:如下代碼對於使用輔助設備上網的用戶能夠提高可訪問性:
.no-svg .icon-only:after { content: attr(aria-label); }
有時,字體並不能在全部設備上都達到最佳的顯示,因此可讓設備瀏覽器來幫助你:
html { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
注:請負責任地使用optimizeLegibility
。此外IE/Edge不支持text-rendering
max-height
實現純CSS幻燈片使用max-height
與超出隱藏實現純CSS的幻燈片:
.slider ul { max-height: 0; overlow: hidden; } .slider:hover ul { max-height: 1000px; transition: .3s ease; /* animate to max-height */ }
box-sizing
讓box-sizing
繼承自html
:
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
這使得在插件或者其餘組件中修改box-sizing
屬性變得更加容易
.calendar { table-layout: fixed; }
在作多列布局的時候,能夠經過Flexbox
的space-between
屬性來避免nth-
、first-
、 last-child
等hacks:
.list { display: flex; justify-content: space-between; } .list .person { flex-basis: 23%; }
這樣,列之間的空白就會被均勻的填滿
當<a>
中沒有文本而href
不爲空的時候,顯示其連接:
a[href^="http"]:empty::before { content: attr(href); }
單行文本溢出
.inline{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
多行文本溢出
.foo{ display: -webkit-box!important; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical;/*方向*/ -webkit-line-clamp:4;/*顯示多少行文本*/ }