:after 选择器向选定元素的最后子元素后面插入内容。
使用content 属性来指定要插入的内容。
每个<p>
元素后插入内容:
<style>
p:after
{
content:"- 插入的内容";
background-color:yellow;
color:red;
font-weight:bold;
}
</style>
:after 选择器向选定元素的最后子元素后面插入内容。
使用content 属性来指定要插入的内容。
每个<p>
元素后插入内容:
<style>
p:after
{
content:"- 插入的内容";
background-color:yellow;
color:red;
font-weight:bold;
}
</style>
info 还没有任何评论,你来说两句呐!