tags:

views:

56

answers:

3

can I specify how text is underlined? For example can I make it underlined by a double line?

+6  A: 

Check out this tutorial on custom underlines from A list apart

You can also try something like this.

.double_underline {
    border-bottom: 3px double;
}
Ólafur Waage
A: 

Yes, you can place the line above or below the text:

text-underline-position: above;

There is however no double underline.

Guffa
This is a proprietary Microsoftism.
David Dorward
@David: Right you are... They usually have the "there is no public standard" text on them, but this said that it was an extension and linked to the CSS spec, so it looked like a standard property until I read it carefully...
Guffa
A: 

This would really be a better question for Doctype, which focuses on issues of web design.

RMorrisey