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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Style on Col tag

Status
Not open for further replies.

NLeaver

Programmer
Jul 24, 2002
6
GB
I have a table where I want alternate columns to have different background colours. I do this using a col tag for each column and setting the background color in the style sheet. This works fine in IE. In Netscape 7 and Opera the background colour is not picked up. To simplify the code, I added the background attribute directly on the col tag rather than using a style sheet - no difference. I put a width attribute in the col tag as well - Netscape picked this up, so it recognises the col tags OK. As far as I can see, the W3C spec says style attributes on the col tag are valid. Number of col tags matches number of TD tags so that is not the problem.
 
Maybe it just doesnt work in netscape, despite what the W3C says. Perhaps you need to set classes for each cell?

<tr>
<td class=&quot;green&quot;>text</td>
<td class=&quot;blue&quot;>text</td>
<td class=&quot;red&quot;>text</td>
</tr>
<tr>
<td class=&quot;green&quot;>text</td>
<td class=&quot;blue&quot;>text</td>
<td class=&quot;red&quot;>text</td>
</tr>


É

endamcg-logo1b.gif

 
Here is some cut-down HTML that shows the problem (and validates OK as transitional HTML 4 with the W3C checker)

<html>
<title>Test</title>
<body>
<table>
<col style=&quot;background-color: #C7DAEB&quot;>
<col style=&quot;background-color: #E2F1FF&quot;>
<col style=&quot;background-color: #C7DAEB&quot;>
<tr>
<td>Column 1</td>
<td>Column 2</td>
<td>Column 3</td>
</tr>
</table>
</body>
</html>

You get alternating blue backgrounds in IE6, white background in Netscape 7. I think it is just not supported in Netscape, I'd like to see something that says so.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top