您好,登錄后才能下訂單哦!
這篇文章主要講解了“css3怎么在頁面中插入內容”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“css3怎么在頁面中插入內容”吧!
A.使用選擇器來插入內容
h3:before{
content:"前綴";
}
h3:after{
content:"后綴";
}
B.指定個別的元素不進行插入
h3.sample:before{
content:none;
}
2. 插入圖像
A.在標題前插入圖像文件
h3:before{
content:url(anwy.jpg);
}
B.將alt屬性的值作為圖像的標題來顯示(用不了)
img:after{
content:attr(alt);
display:block;
text-align:center;
margin-top:5px;
font-size:11px;
font-weight:bold;
color:black;
}
3. 插入編號
A.多個標題前加入連續編號
div:before{
content:counter(divCounter);
}
div{
counter-increment:divCounter;
}
B.在項目符號中追加文字
div:before{
content:"第"counter(divCounter)"段";
}
C.指定編號樣式、種類
div:before{
content:counter(divCounter,upper-alpha)'.';
color:blue;
font-size:16px;
}
D.編號嵌套
div:before{
content:counter(divCounter,upper-alpha)'.';
color:blue;
font-size:16px;
}
div{
counter-increment:divCounter;
counter-reset:subDivCounter;
}
p:before{
content:counter(subDivCounter)'.';
margin-left:15px;
font-size:12px;
}
p{
counter-increment:subDivCounter;
}
E.字符串兩邊添加文字嵌套符號
h4:before{
content: open-quote;
}
h4:after{
content: close-quote;
}
h4{
quotes:"【""】";
}
disc 點| circle圓圈 | square正方形 | decimal數字 | decimal-leading-zero 十進制數| lower-roman 小寫羅馬文字| upper-roman 大寫羅馬文字| lower-greek小寫希臘字母 | lower-latin小寫拉丁文 | upper-latin 大寫拉丁文| armenian亞美尼亞數字 | georgian喬治亞數字 | lower-alpha小寫英文字母 | upper-alpha大寫英文字母 | none無 | inherit繼承
感謝各位的閱讀,以上就是“css3怎么在頁面中插入內容”的內容了,經過本文的學習后,相信大家對css3怎么在頁面中插入內容這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。