how to create a vertical line in webpage??
Answers
Answered by
2
Just try this code:
<div class="vertical_line"></div>
<style>
.vertical_line{height:150px; width:1px;background:#000;}
</style>
<div class="vertical_line"></div>
<style>
.vertical_line{height:150px; width:1px;background:#000;}
</style>
ooo6:
good
Similar questions