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>
请把你的疑问评论在下方。
原文地址:https://www.cnblogs.com/zzcit/p/5590949.html