Forum Moderators: open
Is there a way of stopping a table background image from repeating like you can for the general page background?
<url removed>
You can see a grey strip at the bottom of the page where the fade has started to repeat again. I'd like to stop this so that the page can grow and be on black.
Thanks in advance.
Andy
[edited by: incrediBILL at 6:05 am (utc) on Oct. 23, 2009]
[edit reason] removed personal URLs, see TOS #13 [/edit]
background-repeat: repeat-x;
or
background-repeat: no-repeat;
would yield what you seek (difference being a horizontal repeat still being done in the first example (something a vertical gradient might well use I guess).
More info: [w3.org...]