如何創建:垂直線
學習如何使用 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; }