CSS content内容生成最基本使用实例页面
代码:
CSS代码:
h2:before {
content: "我是额外文字!";
}
HTML代码:
<h2>我是标题</h2>
h2:before {
content: "我是额外文字!";
}
<h2>我是标题</h2>