伪类选择器 before after
2016-09-27 本文已影响14人
Simon_s
<!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>