如何创建:垂直线
学习如何使用 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; }