CSS進階教程 虛擬元素

來源:互聯網
上載者:User
虛擬元素(pseudo elements)跟偽類一樣吮吸選擇符,使用selector:pseudoelement { property: value; }的形式。有四個吮吸器。
首字和首行
首字first-letter 虛擬元素應用到元素的第一個字,而首行first-line則是元素的頂行。你可以,比如,建立一個首行粗體和首字下沉的段落,像這樣:
p:first-letter {
font-size: 3em; float: left;
}
p:first-line {
font-weight: bold;
}
前和後
前before和後after虛擬元素與內容content屬性用於元素的兩邊,在不更改HTML的情況下改變內容的兩邊事物。
內容屬性的值可以open-quote(開引號)、close-quote(閉括弧)、no-open-quote(無開括弧)、no-close-quote(無閉括弧),任何附上引號的字串或者圖片,使用url(imagename)。
blockquote:before {
content: open-quote;
}
blockquote:after {
content: close-quote;
}
li:before {
content: "POW: "
}
p:before {
content: url(images/jam.jpg)
}
注意
聽起來不錯吧,dunnit?嗯,有太多太多的東西(唉,一聲歎息),大多數使用者不能夠看到前後的效果,因為IE被它們所困擾。懶洋洋……

更多CSS進階教程虛擬元素相關文章請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.