How do I add a vertical line to a page?

How do I add a vertical line to a page?

 0
Author: angry, 2011-01-13

2 answers

<hr width="50%" size="4" color="black">
 1
Author: shk, 2011-01-13 16:53:05

In styles:

#vert{
    height:100% // или сколько нужно в пикселях или процентах
    width: 1px;
    border:none;
    border-left: 1px solid #000;
}

In html:

<div id="vert"></div>

Also, in the styles, position as you like, set the dotted line, or make fun of something else.

 6
Author: Ama, 2011-03-08 12:45:50