How do you make a vetical line on a website? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do you make a vetical line on a website?

https://code.sololearn.com/W29lh0qc7iXh/?ref=app

19th Aug 2018, 1:13 PM
albert_theuglyfan
albert_theuglyfan - avatar
2 Answers
+ 1
thanks
19th Aug 2018, 9:32 PM
albert_theuglyfan
albert_theuglyfan - avatar
+ 3
Draw vertical line in WebPage: ---------------------------------------------- <style> .vline { border-left: 3px solid green; height: 500px; } </style> <div class="vline"></div> -------------------------------------------- .vline { border-left: 5px solid green; height: 500px; position: absolute; left: 50%; margin-left: -3px; top: 0; }
19th Aug 2018, 1:52 PM
Rameshwor Nepal
Rameshwor Nepal - avatar