您好,登錄后才能下訂單哦!
今天小編給大家分享一下css中content屬性如何用的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
在css中,content屬性與“:before”以及“:after”偽元素配合使用,用于插入內容,語法為“content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;”。
本教程操作環境:windows10系統、CSS3&&HTML5版本、Dell G3電腦。
content 屬性與 :before 及 :after 偽元素配合使用,來插入內容。
語法為:
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
指定屬性值如下:
示例如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> a:after { content: " (" attr(href) ")"; } </style> </head> <body> <p><a href="http://www.neiyidaogou.com">億速云</a> - 程序員夢開始的地方。</p> <p><a href="http://www.bilibili.com">嗶哩嗶哩彈幕網</a> - 好用的學習網站。</p> </body> </html>
輸出結果:
示例如下:
插入當前元素編號(指定種類)
css:
<style> *{margin: 0;padding: 0;box-sizing: border-box;} li{list-style: none;} .content{ position: relative;padding: 10px; border: 1px solid #666;margin: 10px; } .fill-dom-index2 li{ position: relative; counter-increment: my2; } .fill-dom-index2 li div::before{ /* 第二個參數為list-style-type,可用值見: http://www.w3school.com.cn/cssref/pr_list-style-type.asp*/ content: counter(my2,lower-latin)'- '; color: #f00; font-weight: 600; } </style>
html:
<body> <h2>5、插入當前元素編號(指定種類)</h2> <div class="content fill-dom-index2"> <ul> <li><div>我是第1個li標簽</div></li> <div>我是li標簽中的第1個div標簽</div> <li><div>我是第2個li標簽</div></li> <li><div>我是第3個li標簽</div></li> <div>我是li標簽中的第2個div標簽</div> <li><div>我是第4個li標簽</div></li> <li><div>我是第5個li標簽</div></li> </ul> </div> </body>
以上就是“css中content屬性如何用”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。