Forum Moderators: not2easy
h1 {
border-bottom : 1px solid #91977d;
color : #541502;
font : 18px georgia, times new roman;
font-style : italic;
letter-spacing : 3px;
line-height : 13px;
margin : 12px;
padding : 0 30px 0 30px;
}
As an aside:
Sadly, text-decoration: underline; doesn't allow for the underline to be a color different from the text. I've been using something like this pretty happily - though it may not be best for the question at hand.
<div style="font-size: 1em; color: blue;">
A bit of text.
<br/ >
<span style="display: inline-block; border-bottom: .1em solid red; vertical-align: bottom;">A bit of</span> text.
<br/>
A bit of text.
</div>
Note: Without vertical-align: bottom;, Opera and IE both, to differing degrees, jigger the text up a bit.
Note: vertical-align: bottom; gives a consistent result across Firefox, Opera and IE. Other values are less predictable.