<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
/*在元素内容前面插入些内容*/
p:before{
content: "$";
}
/*在元素内容后面插入些内容*/
p:after{
content: "版权所有,盗版必究";
}
</style>
</head>
<body>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
</body>
</html>
网友评论