首页 > 技术文章 > 怎样在网页中插入一条分割线

annie211 2016-09-30 12:30 原文

一、横线<hr>,可设置css宽高以及背景色。

二、竖线:
方法1,利用块级元素的border属性,如:div{width:1px;height:100px; border-left:1px #000 solid;}
方法2,如果是内联元素,则加上display:inline-block;如:span{display:inline-block;width:1px;height:100px;background:green;}
方法3,插入做好的背景图。

推荐阅读