Tagged Questions
0
votes
3answers
2k views
How to avoid a th element from inheriting properties from a tr element in IE6/7
I've got a table which has a repeating background image on the header:
thead tr
{
border-collapse:collapse;
background: #D3D2D2 url(images/background-table-header.gif) repeat-x top;
}
And ...