20 個 CSS 高級技巧匯總
使用技巧會讓人變的越來越懶,沒錯,我就是想讓你變懶。下面是我收集的CSS高級技巧,希望你懶出境界。
1. 黑白圖像
這段代碼會讓你的彩色照片顯示為黑白照片,是不是很酷?
img.desaturate {n filter: grayscale(100%);n-webkit-filter: grayscale(100%);n-moz-filter: grayscale(100%);n-ms-filter: grayscale(100%);n-o-filter: grayscale(100%);n}n
2. 使用 :not()
在菜單上應用/取消應用邊框
先給每一個菜單項添加邊框
/* add border */n.nav li {n border-right: 1px solid #666;n}n
然後再除去最後一個元素
// remove border /nn.nav li:last-child {n border-right: none;n}n
可以直接使用 :not() 偽類來應用元素:
.nav li:not(:last-child) {n border-right: 1px solid #666;n}n
這樣代碼就乾淨,易讀,易於理解了。
當然,如果你的新元素有兄弟元素的話,也可以使用通用的兄弟選擇符(~):
.nav li:first-child ~ li {n border-left: 1px solid #666;n}n
3. 頁面頂部陰影
下面這個簡單的 CSS3 代碼片段可以給網頁加上漂亮的頂部陰影效果:
body:before {n content: "";n position: fixed;n top: -10px;n left: 0;n width: 100%;n height: 10px;nn-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);n-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);n box-shadow: 0px 0px 10px rgba(0,0,0,.8);nn z-index: 100;n}n
4. 給 body 添加行高
你不需要分別添加 line-height 到每個p,h標記等。只要添加到 body 即可:
body {n line-height: 1;n}n
這樣文本元素就可以很容易地從 body 繼承。
5. 所有一切都垂直居中
要將所有元素垂直居中,太簡單了:
html, body {n height: 100%;n margin: 0;n}nnbody {n-webkit-align-items: center; n-ms-flex-align: center; n align-items: center;n display: -webkit-flex;n display: flex;n}n
看,是不是很簡單。
注意:在IE11中要小心flexbox
6. 逗號分隔的列表
讓HTML列表項看上去像一個真正的,用逗號分隔的列表:
ul > li:not(:last-child)::after {n content: ",";n}n
對最後一個列表項使用 :not() 偽類。
7. 使用負的 nth-child 選擇項目
在CSS中使用負的 nth-child 選擇項目1到項目n。
li {n display: none;n}nn/* select items 1 through 3 and display them */nli:nth-child(-n+3) {n display: block;n}n
8. 對圖標使用 SVG
我們沒有理由不對圖標使用SVG:
.logo {n background: url("logo.svg");n}n
SVG對所有的解析度類型都具有良好的擴展性,並支持所有瀏覽器都回歸到IE9。這樣可以避開.png、.jpg或.gif文件了。
9. 優化顯示文本
有時,字體並不能在所有設備上都達到最佳的顯示,所以可以讓設備瀏覽器來幫助你:
html {n-moz-osx-font-smoothing: grayscale;n-webkit-font-smoothing: antialiased;n text-rendering: optimizeLegibility;n}n
註:請負責任地使用 optimizeLegibility。此外,IE /Edge沒有 text-rendering 支持。
10. 對純 CSS 滑塊使用 max-height
使用 max-height 和溢出隱藏來實現只有CSS的滑塊:
.slider ul {n max-height: 0;n overlow: hidden;n}nn.slider:hover ul {n max-height: 1000px;n transition: .3s ease;n}n
11. 繼承 box-sizing
讓 box-sizing 繼承 html:
html {n box-sizing: border-box;n}nn*, *:before, *:after {n box-sizing: inherit;n}n
這樣在插件或槓桿其他行為的其他組件中就能更容易地改變 box-sizing 了。
12. 表格單元格等寬
表格工作起來很麻煩,所以務必盡量使用 table-layout: fixed 來保持單元格的等寬:
.calendar {n table-layout: fixed;n}n
13. 用 Flexbox 擺脫外邊距的各種 hack
當需要用到列分隔符時,通過flexbox的 space-between 屬性,你就可以擺脫nth-,first-,和 last-child 的hack了:
.list {n display: flex;n justify-content: space-between;n}nn.list .person {n flex-basis: 23%;n}n
現在,列表分隔符就會在均勻間隔的位置出現。
14. 使用屬性選擇器用於空鏈接
當a元素沒有文本值,但 href 屬性有鏈接的時候顯示鏈接:
a[href^="http"]:empty::before {n content: attr(href);n}n
相當方便。
15. 檢測滑鼠雙擊
HTML:
<div class="test3">n<span><input type="text" value=" " readonly="true" />n<a href="http://renpingjun.com">Double click me</a></span>n</div>n
CSS:
.test3 span {n position: relative;n}n.test3 span a {n position: relative;n z-index: 2;n}n.test3 span a:hover, .test3 span a:active {n z-index: 4;n}n.test3 span input {n background: transparent;n border: 0;n cursor: pointer;n position: absolute;n top: -1px;n left: 0;n width: 101%; /* Hacky */n height: 301%; /* Hacky */n z-index: 3;n}n.test3 span input:focus {n background: transparent;n border: 0;n z-index: 1;n}n
16. CSS 寫出三角形
/* create an arrow that points up */ndiv.arrow-up {n width:0px;n height:0px;n border-left:5px solid transparent; /* left arrow slant */n border-right:5px solid transparent; /* right arrow slant */n border-bottom:5px solid #2f2f2f; /* bottom, add background color here */n font-size:0px;n line-height:0px;n}nn/* create an arrow that points down */ndiv.arrow-down {n width:0px;n height:0px;n border-left:5px solid transparent;n border-right:5px solid transparent;n border-top:5px solid #2f2f2f;n font-size:0px;n line-height:0px;n}nn/* create an arrow that points left */ndiv.arrow-left {n width:0px;n height:0px;n border-bottom:5px solid transparent; /* left arrow slant */n border-top:5px solid transparent; /* right arrow slant */n border-right:5px solid #2f2f2f; /* bottom, add background color here */n font-size:0px;n line-height:0px;n}nn/* create an arrow that points right */ndiv.arrow-right {n width:0px;n height:0px;n border-bottom:5px solid transparent; /* left arrow slant */n border-top:5px solid transparent; /* right arrow slant */n border-left:5px solid #2f2f2f; /* bottom, add background color here */n font-size:0px;n line-height:0px;n}n
17. CSS3 calc() 的使用
calc() 用法類似於函數,能夠給元素設置動態的值:
/* basic calc */n.simpleBlock {n width: calc(100% - 100px);n}nn/* calc in calc */n.complexBlock {n width: calc(100% - 50% / 3);n padding: 5px calc(3% - 2px);n margin-left: calc(10% + 10px);n}n
18. 文本漸變
文本漸變效果很流行,使用 CSS3 能夠很簡單就實現:
h2[data-text] {n position: relative;n}nh2[data-text]::after {n content: attr(data-text);n z-index: 10;n color: #e3e3e3;n position: absolute;n top: 0;n left: 0;n-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,1)), to(rgba(0,0,0,0)));}n
19. 禁用滑鼠事件
CSS3 新增的 pointer-events 讓你能夠禁用元素的滑鼠事件,例如,一個連接如果設置了下面的樣式就無法點擊了。
.disabled { pointer-events: none; }n
20. 模糊文本
簡單但很漂亮的文本模糊效果,簡單又好看!
.blur {n color: transparent;n text-shadow: 0 0 5px rgba(0,0,0,0.5);n}n
推薦閱讀:
※overflow:hidden 為什麼能達到這樣的效果?
※在前端開發中,頁面渲染指什麼?
※css3中-webkit-transform 的 skew 如何使用?
※Stylus - 讓 CSS 自由到「木有下限」
※HTML 和 CSS 代碼結構如何寫更加規範?
TAG:CSS |