Back
How do you make a vertical line using HTML?
Try putting the <div> tag around the markup where you want the line to appear to the next, and you can use CSS to style it like this:
.verticalLine { border-left: thick solid #ff0000;}<div class="verticalLine"> some other content</div>
.verticalLine {
border-left: thick solid #ff0000;
}
<div class="verticalLine">
some other content
</div>
31k questions
32.8k answers
501 comments
693 users