如何创建 - 垂直线
了解如何使用 CSS 创建垂直线。
如何创建垂直线
实例
<style>
.vl {
border-left: 6px solid green;
height:
500px;
}
</style>
<div class="vl"></div>
亲自试一试 »
如何使页面中的垂直线居中:
实例
.vl {
border-left: 6px solid green;
height:
500px;
position: absolute;
left:
50%;
margin-left: -3px;
top: 0;
}
亲自试一试 »