在css3中,content屬性與「:before」及「:after」偽元素搭配使用,用於在元素的前後插入內容,語法為「元素:before{content:"插入的內容" ;}」和「元素:after{content:"插入的內容";}」。
本教學操作環境:windows10系統、CSS3&&HTML5版、Dell G3電腦。
css3中content的用法是什麼
content 屬性與 :before 及 :after 偽元素搭配使用,來插入內容。
語法如下:
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
其中:
#範例如下:
<html> <head> <meta charset="utf-8"> <title>123</title> <style> p:before { content:"好好学习,"; } </style> </head> <body> <p>天天向上</p> </body> </html>
輸出結果:
(學習影片分享:css影片教學)
以上是css3中content的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!