Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape 6 and CSS

Status
Not open for further replies.

gidduk

Programmer
Dec 28, 2001
1
IN
I am trying to apply CSS in Netscape 6.1 fot text which appear within td tag..

eg..
<table>
<tr>
<td &quot;bodytext&quot;> Some text</td>
</tr>
</table>

But it is not working.. Any workaround for the same.. Pls.. Help

Karthik
 
I don't know about your method including directly the name of the css class, But you can try
<table>
<tr>
<td class=bodytext> Some text</td>
</tr>
</table>
if bodytext is a class it will work
ou just have declare
.bodyclass{all attribute} in your html page (or another file you will import)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top