+ 1
what tag do you use to create a vertical line
6 Answers
+ 3
Use CSS for that.
<div class="vertical-line" style="height: 45px;" />
CSS:
div.vertical-line{
width: 1px;
background-color: black;
height: 100%;
float: left;
}
+ 2
<hr />
+ 1
<hr>
+ 1
You can use just <hr> too
0
thanks
0
use hr tag