更多"Try it Yourself"下面的例子。
定義和用法
內容屬性是用來與:before和:after偽元素,插入生成的內容。
默認值: | normal |
---|---|
遺傳: | no |
動畫: | no. Read about animatable |
版: | CSS2 |
JavaScript語法: | You can't give an element a pseudo-class by using JavaScript, but there are other ways to get the same result: Try it |
瀏覽器支持
在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
content | 1.0 | 8 | 1.0 | 1.0 | 4 |
Note: IE8只支持內容屬性如果指定了DOCTYPE的!
CSS語法
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
屬性值
值 | 描述 | 例 |
---|---|---|
normal | 默認值。 設置的內容,如果指定的,正常的,它默認為"none" (which is nothing) | Try it » |
none | 設置的內容,如果指定,不了了之 | Try it » |
counter | 設置內容為計數器 | Try it » |
attr (attribute) | 設置內容為一體的selector's屬性 | Try it » |
string | 設置內容到您指定的文字 | Try it » |
open-quote | 設置內容是一個開引號 | Try it » |
close-quote | 設置內容是收盤報價 | Try it » |
no-open-quote | 從內容中刪除開盤報價,如果指定 | Try it » |
no-close-quote | 從內容中刪除收盤報價,如果指定 | Try it » |
url( url ) | 設置內容是某種類型的媒體(an image, a sound, a video, etc.) | Try it » |
initial | 將此屬性設置為默認值。 閱讀關於初始 | |
inherit | 繼承其父元素此屬性。 閱讀關於繼承 |
更多示例
例
如何添加項目符號的顏色<ul>或<ol>通過刪除其默認子彈和補充,看起來像子彈HTML實體(•) :
ul {
list-style: none; /* Remove list bullets */
padding: 0;
margin: 0;
}
li {
padding-left: 16px;
}
li:before {
content: "•"; /* Insert content that
looks like bullets */
padding-right: 8px;
color: blue; /* Or a color you prefer */
}
試一試» 相關頁面
CSS參考: :before偽元素
CSS參考: :偽元素之後