css3怎么在页面中插入内容
这篇文章主要讲解了“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怎么在页面中插入内容这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341