在 CSS3 中爲了區別僞元素和僞類爲僞元素使用了雙冒號,所以若是使用了 display 或者 width 等屬性時使得顯示脫離了本來元素後,建議按照標準雙寫。過於老的瀏覽器可能會存在支持問題,不過僞元素大可能是配合 CSS3 使用,就無所謂向下兼容了:瀏覽器
p:before {}
img::after {}
這兩個僞類下特有的屬性 content ,用於在 CSS 渲染中向元素邏輯上的頭部或尾部添加內容。注意這些添加不會改變文檔內容,不會出如今 DOM 中,不可複製,僅僅是在 CSS 渲染層加入。比較有用的是如下幾個值:url
1) [string] – 使用引號包括一段字符串,將會向元素內容中添加字符串。示例:spa
a:after { content: "↗"; }
2) attr() – 調用當前元素的屬性,能夠方便的好比將圖片的 Alt 提示文字或者連接的 Href 地址顯示出來。示例:code
a:after { content:"(" attr(href) ")"; } a:after { content: "("attr(alt)")"; } <a href="www.baidu.com" alt="百度地址連接">百度</a>
3) url() / uri() – 用於引用媒體文件。示例:blog
h1::before { content: url(logo.png); }
4) counter() – 調用計數器,能夠不使用列表元素實現序號功能。具體請參見 counter-increment 和 counter-reset 屬性的用法。示例:圖片
h2:before { counter-increment: chapter; content: "Chapter " counter(chapter) ". " }
清除浮動是一個時常會遇到的問題,很多人的解決辦法是添加一個空的 div 應用 clear:both; 屬性。如今,無需增長沒有意義的元素,僅須要如下樣式便可在元素尾部自動清除浮動:rem
.clear-fix { *overflow: hidden; *zoom: 1; }
.clear-fix:after { display: table; content: ""; width: 0; clear: both; }
許多人喜歡給 blockquote 引用段添加巨大的引號做爲背景,這種時候咱們就能夠用 :before 來代替 background 了,便可以給背景留下空間,還能夠直接使用文字而非圖片:文檔
blockquote::before {
content: open-quote;
position: absolute;
z-index: -1;
color: #DDD;
font-size: 120px;
font-family: serif;
font-weight: bolder;
}
blockquote::after{
content: close-quote;
position: absolute;
z-index: -1;
color: #DDD;
font-size: 120px;
font-family: serif;
font-weight: bolder;
}
除了簡單的添加字符,配合 CSS 強大的定位和特效特性,徹底能夠達到給簡單的元素另外附加最多兩個容器的效果。有一點須要注意的是,若是不須要內容僅配合樣式屬性作出效果,內容屬性也不能爲空,即 content:」」 。不然,其餘的樣式屬性一律不會生效。字符串
鼠標移上連接,出現方括號:string
a {
position: relative;
display: inline-block;
outline: none;
text-decoration: none;
color: #000;
font-size: 32px;
padding: 5px 10px;
}
a:hover::before, a:hover::after { position: absolute; }
a:hover::before { content: "\5B"; left: -20px; }
a:hover::after { content: "\5D"; right: -20px; }