+ 12
How to make Vertical Line in HTML?
Want to know how to make a vertical line in HTML for my first blog
5 Answers
+ 1
Hello. The only possibility I know is to put your content into a block and change the color of the right or left border.
+ 1
<div
style="width:1px;height:400px;background-color:#000"></div>
or with svg
0
Thank You very much. That was quick!
0
I will try that.