问题描述:在只使用一个标签的情况下实现左边竖线 通用标签与样式如下: html: 实现左边竖线 css: .div1 { width: 200px; height: 50px; line-height:50px; text-align: center; background: #ccc; position: relative; } 方法一:使用border .div1 { border-left: 5px solid red;} 方法二:使