Learn how to create a vertical line with CSS.
<style>
.vl {
border-left: 6px solid green;
height: 500px;
}
</style>
<div class="vl"></div>
Try it Yourself »
How to center the vertical line in your page:
.vl {
border-left: 6px solid green;
height: 500px;
position: absolute;
left: 50%;
margin-left: -3px;
top: 0;
}
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!