Hi,
I need to double underline something. It's an accounting front end web app.
how would the style tag be worded.

thanks
rafael

Re: Double Underline in VBScript or HTML by Viatcheslav

Viatcheslav
Mon Mar 01 11:27:54 CST 2004

Use span with border-bottom-style attribute and set it to double.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<STYLE>
.doubled
{
border-bottom-style: double;
}
</STYLE>
</HEAD>
<BODY>
<SPAN class="doubled">This text is double-underlined.</SPAN>
</BODY>
</HTML>

//------------------------------------
Regards,
Vassiliev V. V.
http://www-sharp.com -
Scripting/HTA/.Net Framework IDE

"Rafael Chemtob" <rchemtobb@nospam.yahoo.com> ÓÏÏÂÝÉÌ/ÓÏÏÂÝÉÌÁ × ÎÏ×ÏÓÔÑÈ
ÓÌÅÄÕÀÝÅÅ: news:OKB7ER6$DHA.2012@TK2MSFTNGP11.phx.gbl...
> Hi,
> I need to double underline something. It's an accounting front end web
app.
> how would the style tag be worded.
>
> thanks
> rafael
>
>