Possible Duplicate:
Can we solve the table row background image problem, in chrome, in multi celled tables?
I’m trying to have one image as the background for the first row. The problem is that the background gets applied to each cell separately, not as a whole. Is there a way around it?
http://jsfiddle.net/bumpy009/c3txj/
Result should look something like this:

EDIT: The problem appears only in Safari, Opera and chrome. Didn’t check IE yet.
If you want it across each row, why not make it the table background instead and repeat it in the y-axis?
BTW I tested your code with IE9, FF12 – those are showing the image once per row. But Chrome 15 & Safari 5 is repeating it for each td.
Edit
Since you only wanted it in the first-row, you should use background-position to make sure the image stays at the top of the table (that’s usually where the first row is, right? :P)