Double underline, with css |
Double underline, with css |
Feb 11 2007, 05:21 PM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Sep 2006 Member No: 461,376 |
Im a newbie to css and stuff and I was wondering what i should put to this code to make it write a double underline when i use the underline tags.
This is the stylesheet: CODE u { font-family: arial; font-size: 8pt; color: 304973; } Thanks. |
|
|
|
![]() |
| *mipadi* |
Feb 11 2007, 06:49 PM
Post
#2
|
|
Guest |
I'd do this:
CODE u { font-family:Arial; font-size:8pt; color:#304973; text-decoration:none; /* Turns off underlining */ border-bottom:Xpx double #304973; /* Adds a double underline */ } Change X (in Xpx) to the size of the broder, in pixels. |
|
|
|
harry potter freak Double underline Feb 11 2007, 05:21 PM
toyo loco add border-bottom: #px solid ######; before the ... Feb 11 2007, 05:22 PM
harry potter freak Oh, thanks, both of you guys.
I have another qu... Feb 14 2007, 12:52 AM
mipadi I don't know of a good way to do a double stri... Feb 14 2007, 01:45 PM
Azarel ^ Actually, I don't think there is a way to ha... Feb 14 2007, 06:24 PM
harry potter freak Really? I think I saw a double strike in a website... Feb 14 2007, 06:34 PM
mipadi It's probably possible, but just not easy. I... Feb 14 2007, 07:09 PM![]() ![]() |