提高前端工程師的css3代碼編寫的專業性

1. 使用 :not() 爲導航添加/取消邊框javascript

不少人會這樣給導航添加邊框,而後給最後一個取消掉:css

/* add border */
.nav li {
border-right: 1px solid #666;
}html

/* remove border */
.nav li:last-child {
border-right: none;
}
其實,用CSS的 :not() 能夠簡化爲下面的代碼:java

.nav li:not(:last-child) {
border-right: 1px solid #666;
}
固然,你也可使用 .nav li + li 甚至 .nav li:first-child ~ li,可是使用 :not() 可使意圖更加明確。css3

2. 給 body 添加 line-height 屬性web

你不須要爲 <p>、<h*> 分別添加 line-height 屬性,相反的,只須要添加到 body 上便可:chrome

body {
line-height: 1;
}
這樣,文本元素就能夠很容易的從 body 繼承該屬性。瀏覽器

3. 垂直居中ide

這並非什麼魔法,你能夠垂直居中任何元素:svg

html, body {
height: 100%;
margin: 0;
}

body {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-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;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
8. 使用 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 */
}
9. 繼承 box-sizing

讓 box-sizing 繼承自 html :

html {
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
}
這使得在插件或者其餘組件中修改 box-sizing 屬性變得更加容易。

10. 設置表格相同寬度

.calendar {
table-layout: fixed;
}
11. 使用 Flexbox 來避免 Margin Hacks

在作多列布局的時候,能夠經過 Flexbox 的 space-between 屬性來避免nth-、first-、 last-child 等 hacks:

.list {
display: flex;
justify-content: space-between;
}

.list .person {
flex-basis: 23%;
}
這樣,列之間的空白就會被均勻的填滿。

13. 對空連接使用屬性選擇器

當 <a> 中沒有文本而 href 不爲空的時候,顯示其連接:

a[href^="http"]:empty::before {
content: attr(href);
}
瀏覽器支持

以上技巧支持大部分現代瀏覽器,如:Chrome、Firefox、Safari、Edge以及IE11。

 

兼容全部瀏覽器的陰影寫法:

.shadow {
width:200px;
height:200px;
background-color:#000;
-moz-box-shadow: 3px 3px 4px #444;
-webkit-box-shadow: 3px 3px 4px #444;
box-shadow: 3px 3px 4px #444;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444');

  

 css3圓角的製做

各瀏覽器的兼容寫法:

-moz-border-radius: 20px;

-webkit-border-radius: 20px;

-o-border-radius: 20px;

老版本的IE瀏覽器的兼容寫法:

若是你的IE比較老,不支持border-radius,有不少其它的技術能夠彌補這個缺陷,我遇到過的最好的一個解決方法是使用一個很小的JavaScript程序包,叫作CurvyCorners。這個CurvyCorners用javaScript動態的生成不少div標記,用這些div標記來繪出圓角效果,甚至支持消除鋸齒功能。

CurvyCorners的用法很簡單。第一步是在頁面中引入CurvyCorners.js腳本:

<script src="curvy.corners.trunk.js"></script>
CurvyCorners會在DOM元素裏尋找具備屬性的元素,而後依次給它們製做出圓角效果。不須要輔助圖片。你甚至能夠設置指定元素的弧度半徑:
border-radius
var settings = { tl: { radius: 12 }, tr: { radius: 12 }, bl: { radius: 12 }, br: { radius: 12 }, antiAlias: true }; /* moooo */ $$('.round').each(function(rd) { curvyCorners(settings,rd); });

我強烈建議你應該指定須要使用圓角的元素,由於讓腳本搜索整個頁面來尋找須要圓角處理的元素是一個很耗CPU的過程,並且這個過程是每一個頁面加載時都會執行。

 

線性漸變色兼容全部瀏覽器

 

 

#example1	{
	/* 底色 */
	width:200px;
	height:200px;
	background-color: #063053;
	/* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.32, #063053), color-stop(0.66, #395873), color-stop(0.83, #5c7c99));
	/* chrome 10+, safari 5.1+ */
	background-image: -webkit-linear-gradient(#063053, #395873, #5c7c99);
	/* firefox; multiple color stops */
	background-image: -moz-linear-gradient(top,#063053, #395873, #5c7c99);
	/* ie 6+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#063053', endColorstr='#395873');
	/* ie8 + */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#063053', endColorstr='#395873')";
	/* ie10 */
	background-image: -ms-linear-gradient(#063053, #395873, #5c7c99);
	/* opera 11.1 */
	background-image: -o-linear-gradient(#063053, #395873, #5c7c99);
	/* 標準寫法 */
	background-image: linear-gradient(#063053, #395873, #5c7c99);
}

 

  

CSS顏色漸變(Gradients)的技巧和提示

CSS顏色漸變(Gradients)技術頗有價值,但有時很難實現。有時你已經實現了想要的漸變,而瀏覽器的支持也會成爲一個問題。下面是一些使用CSS顏色漸變(Gradients)的建議:

一、想讓你的CSS顏色漸變(Gradients)表現必定的透明度?使用 rgba 顏色。
二、使用背景色墊底,這樣防止當瀏覽器不支持時不注意沒有任何顏色。
三、火狐瀏覽器和谷歌瀏覽器都支持repeating-linear-gradient 和 repeating-radial-gradient,用法是:

#example7 {
	background-image: -moz-repeating-linear-gradient(top left -45deg, green, red 5px, white 5px, #ccc 10px);
	background-image: -webkit-repeating-linear-gradient(-45deg, green, red 5px, white 5px, #ccc 10px);
}

 

css3屬性-webkit-font-smoothing
CSS3裏面加入了一個「-webkit-font-smoothing」屬性。

這個屬性可使頁面上的字體抗鋸齒,使用後字體看起來會更清晰舒服。

它有三個屬性:

none ------ 對低像素的文本比較好

subpixel-antialiased ------默認值

antialiased ------抗鋸齒很好

例子:

body{

-webkit-font-smoothing: antialiased;

}

相關文章
相關標籤/搜索