For some reason when you apply a background image to a tr in Safari/Chrome it renders it as if the rule applies to every td.
Firefox:
(source: whyprime.com)
Safari:
(source: whyprime.com)
I found this article discussing a fix:
http://snook.ca/archives/html_and_css/applying_a_back
I was able to get it working in IE with spacer gifs but can't figure it out for Safari.
By default, the TR and TD have display properties table-cell and table-row. We need them to forget about it and feel like simple block elements:
This code solved the problem of rendering for me.
it's bit late but, you can use "background-attachment : fixed" to solve this problem.
and in CSS
and it works!
Will your table always only have 2 rows? Such as:
If so, a simple but not overly elegant solution would be to split your background image into two images, and apply a CSS class to the left and right column, applying half of the arrow to the right side of the left column, and to the left side of the right column:
Your CSS could then be similar to:
You could also use a sprite image where you use 1 image and position it differently for the two backgrounds.
I realize it's probably not the most ideal solution but it would at least fix your issue and get your project moving. I sometimes use simple solutions such as this in order to make forward progress, and then revisit the problem to make it more efficient later.
Hope this helps!