Hi!
How can I put a background of the page or a table, but it will be not repeateing itself???
Printable View
Hi!
How can I put a background of the page or a table, but it will be not repeateing itself???
You can use css:
background-repeat: no-repeat
If you do this, and you have a large page, with scrollbars, you might add background-attachment: scroll.
I don't know how well these properties are supported, but AFAIK they are in IE5+ and Mozilla/NS6+.
(Now we're talking on backgrounds: background-position is incorrectly implemented in IE. It only works correctly for page backgrounds, but not for backgrounds of tables, div-tags, etc.)
where I have to write: background-repeat: no repeat ???Quote:
Originally posted by riis
You can use css:
background-repeat: no-repeat
If you do this, and you have a large page, with scrollbars, you might add background-attachment: scroll.
I don't know how well these properties are supported, but AFAIK they are in IE5+ and Mozilla/NS6+.
(Now we're talking on backgrounds: background-position is incorrectly implemented in IE. It only works correctly for page backgrounds, but not for backgrounds of tables, div-tags, etc.)
orCode:<html>
<head>
<style type="text/css">
body {background-repeat: no-repeat; }
</style>
<body> etc...
Code:(head)
<body style="background-repeat: no-repeat;">
etc...
thanks...