Link to home
Start Free TrialLog in
Avatar of ycomp
ycomp

asked on

CSS - text-decoration: underline

Is it possible to set text-decoration underline underline styles?

e.g. like double underline or even double accounting or single accounting ones?
ASKER CERTIFIED SOLUTION
Avatar of Zyloch
Zyloch
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ycomp
ycomp

ASKER

thanks Zyloch.

I'm sure if double underline is not natively supported by CSS then double and single accounting underline (like in Excel) is not natively supported either.
Hmmm, if I may - a lot of unecessary code and IE only hacks there :-(

<span style="border-bottom: double red;">Your text</span>

or for links

a.special
{
border-bottom: double red;
}

<a href="" class="special">Your text</a>
Avatar of ycomp

ASKER

cool sean, your code will come in useful.
Yah, some unnecessary code, but I was just showing all the ways to do it :)