Code for double underline in user module code mode?

Eric

Beta Tester
Messages
875
Is there a code to double underline in code mode in the User Module Editor? I know there's no button for it, but I'm trying to find out if it's possible. I see that the codes for the single underline are <u>and</u>.

I searched for HTML codes and CSS codes (not that I know the difference), but I didn't see anything that looked very helpful.

I found I can use this (from http://www.html.am/html-codes/text/html-underline-code.cfm):
<p style="border-bottom: 1px double">text</p>
or
<span style="border-bottom: 1px double">text</span>

but it doesn't double it.

I can use this:
<span style="border-bottom: 1px double orange">text</span>
and I get a single orange underline (I like the fact I can select colors, but it's still not double).
 
Last edited:
Change it to 3px from 1px. A border is not really an underline, and if you limit it to a single pixel there is no way for it to be drawn as two lines.
 
Well, that makes sense! Thanks.

And there is no simple other method like <u>and</u>, right?
 
Well, that makes sense! Thanks.

And there is no simple other method like <u>and</u>, right?

No, there's no double-underline tag in HTML.
 
Back
Top