好程式設計師web前端教程分享CSS技巧!

好程式設計師IT發表於2019-06-25

好程式設計師web前端教程分享CSS技巧!現在學 web人越來越多,小白的問題也越來越多,那麼今天 就為大家分享一下 CSS 學習 技巧! w eb前端工作中離不開css的使用。為了幫助大家提高自己的css使用技巧,下面讓我們一起來看一看吧!

1、使用 :not() 為導航新增/取消邊框

很多人會這樣給導航新增邊框,然後給最後一個取消掉:

/* add border */


.nav li {


border-right: 1px solid #666;


}


/* remove border */


.nav li:last-child {


border-right: none;


}

其實,用CSS的 :not() 可以簡化為下面的程式碼:

.nav li:not(:last-child) {


border-right: 1px solid #666;


}

當然,你也可以使用 .nav li + li 甚至 .nav li:first-child ~ li,但是使用 :not() 可以使意圖更加明確。

2、給 body 新增 line-height 屬性

你不需要為 <p>、<h*> 分別新增 line-height 屬性,相反的,只需要新增到 body上即可:

body {


line-height: 1;


}

這樣,文字元素就可以很容易的從 body 繼承該屬性。

3、垂直居中

這並不是什麼魔法,你可以垂直居中任何元素:

html, body {


height: 100%;


margin: 0;


}


body {


- w ebkit-align-items: center;


-ms-flex-align: center;


align-items: center;


display: - w ebkit-flex;


display: flex;


}

還需要其他的?水平居中、垂直居中,在任何時間、任何地方?可以看看CSS-Tricks的這篇文章。

注意:flexbox 在 IE11 下存在一些bug。

4、使用逗號分隔列表

使列表看起來像是用逗號分割的:

ul > li:not(:last-child)::after {


content: ",";


}

透過 :not() 偽類去掉最後一個元素後面的逗號。

5、 使用負的 nth-child 選取元素

使用負的 nth-child 在 1 到 n 之間選擇元素:

li {

display: none;

}

/* 選擇第1到3個元素並顯示它們 */

li:nth-child(-n+3) {

display: block;

}

當然,如果你瞭解 :not() 的話,還可以這麼做:

li:not(:nth-child(-n+3)) {

display: none;

}

是不是非常簡單?

6、 使用 SVG 作 icon 圖示

沒什麼理由不使用 SVG 作 icon 圖示:

.logo {

background: url("logo.svg");

}

SVG 對於任何解析度的縮放效果都很好,並且支援 IE9+所有瀏覽器,所以,放棄使用 .png、.jpg、.gif檔案吧。

注:以下程式碼對於使用輔助裝置上網的使用者可以提升可訪問性:

.no-svg .icon-only:after {

content: attr(aria-label);

}

7、文字展示最佳化

有時候字型並不是對於所有裝置都顯示為最佳效果,所以使用瀏覽器來幫忙吧:

html {

-moz-osx-font-smoothing: grayscale;

- w ebkit-font-smoothing: antialiased;

text-rendering: optimizeLegibility;

}

8、 使用 max-height 實現純CSS幻燈片

使用 max-height 與超出隱藏實現純CSS的幻燈片:

.slider ul {


max-height: 0;


overlo w : hidden;


}


.slider:hover ul {


max-height: 1000px;


transition: .3s ease; /* animate to max-height */


}

9、繼承 box-sizing

讓 box-sizing 繼承自 html :

這使得在外掛或者其他元件中修改 box-sizing 屬性變得更加容易。

10、 設定表格相同寬度

.calendar {

table-layout: fixed;

}

11、使用 Flexbox 來避免 Margin Hacks

在做多列布局的時候,可以透過 Flexbox 的 space-bet w een 屬性來避免nth-、first-、 last-child 等 hacks:

.list {

display: flex;

justify-content: space-bet w een;

}

.list .person {

flex-basis: 23%;

}

這樣,列之間的空白就會被均勻的填滿。

12、對空連結使用屬性選擇器

當 <a>中沒有文字而 href 不為空的時候,顯示其連結:

a[href^="http"]:empty::before {

content: attr(href);

}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69913892/viewspace-2648716/,如需轉載,請註明出處,否則將追究法律責任。

相關文章