[thelist] CSS question????

lon.kraemer lwkraemer at directvinternet.com
Wed Aug 28 13:50:01 CDT 2002


> I would like to know how I can call a textnormal class i have below in
my td
> style or if it is possible.
>
>
> .textnormal {  font-family: arial; font-size: 11px; color: #000000;
> text-decoration: none}
>
> table { border: 0; }
> td { class: textnormal; }
>
>
> I thought this would work since in the actual table data i call
> <td class = "textnormal"></td>
>
> but this does not seem to be the case.
>
> How do I reference the "textnormal" style in the td style?

If I'm following:

<td class = "textnormal"></td> is fine.
td { class: textnormal; } is wrong, remove it!

Keep:

table { border: 0; }

.textnormal {  font-family: arial; font-size: 11px; color: #000000;
text-decoration: none}







More information about the thelist mailing list