1. 黑白影象
這段程式碼會讓您的彩色照片顯示為黑白照片,是不是很酷?
img.desaturate {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);

}

2. 頁面頂部陰影
下面這個簡單的 css3 程式碼片段可以給網頁加上漂亮的頂部陰影效果:
body:before {
content: “”;
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;

-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
box-shadow: 0px 0px 10px rgba(0,0,0,.8);

z-index: 100;

}

3. 所有一切都垂直居中
要將所有元素垂直居中,太簡單了:
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 。

4. 文字漸變
文字漸變效果很流行,使用 CSS3 能夠很簡單就實現:
h2[data-text] {
position: relative;
}
h2[data-text]::after {
content: attr(data-text);
z-index: 10;
color: #e3e3e3;
position: absolute;
top: 0;
left: 0;
-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)));

}

5. 禁用滑鼠事件
CSS3 新增的 pointer-events 讓您能夠禁用元素的滑鼠事件,例如,一個連線如果設定了下面的樣式就無法點選了。
.disabled {
pointer-events: none; 

}

6. 模糊文字
簡單但很漂亮的文字模糊效果,簡單又好看!
.blur {
color: transparent; 
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}