How about a horizontal rule? <hr /> The following is borrowed from another post:
You need to set the margin to half the width of space left over by the horizontal rule. Eg, if you want a rule that's 70% of the page width, that leaves 30% remaining, so you'd set the left margin to half of that space, or 15%:
CSS Code:
hr {
width: 70%;
margin-left: 15%
}
|