美文网首页
css写实线和虚线

css写实线和虚线

作者: 前端小飞象 | 来源:发表于2021-06-15 11:58 被阅读0次

    html

    <div class="solid_line"></div>
    <div class="dotted-line"></div>
    

    css

    .solid_line{
         height: 80px;
         border-left: 3px solid #b2b2b2;
         border-radius: 3px;//实现线两端的圆角
    }
    .dotted-line{
         height: 80px;
         border-left: 4px dotted #b2b2b2;
    }
    

    效果:

    竖线
    横线只需要修改border-leftborder-topborder-bottom
    横线

    相关文章

      网友评论

          本文标题:css写实线和虚线

          本文链接:https://www.haomeiwen.com/subject/netxjltx.html