css在网页中划线

时间:2023-03-10 07:12:58
css在网页中划线

在行边距上的线可以通过

1 div,表格等的border属性实现

2 <hr/>实现

3 通过背景图片实现

4 页面内写入横线图片 通过相对定位实现

5 通过css伪类实现

 <style>
h2{text-align: center;}
h2::before, h2::after {
color: #c80;
content: "——————";
font-size: 24px;
margin: 10px;
}
</style>