How TO - Vertical Line

Clash Royale CLAN TAG#URR8PPP <!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
How TO - Vertical Line
❮ Previous
Next ❯
Learn how to create a vertical line with CSS.
Try it Yourself »
How To Create a Vertical Line
Example
<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:
Example
.vl
border-left: 6px solid green;
height:
500px;
position: absolute;
left:
50%;
margin-left: -3px;
top: 0;
Try it Yourself »
❮ Previous
Next ❯