Posts Tagged ‘css’

Table Row Backgrounds in IE 6 and 7

Ever try to use CSS to specify a background image for table rows?
IE 6 and 7 breaks it. The image is iterated across each <td> in the row. Here’s a simple fix in your CSS:
tr {background: url(’image’) no-repeat left top; position: relative;}
td {background: none}
Easy.