|
-
Apr 26th, 2003, 06:03 PM
#1
Thread Starter
Addicted Member
Background?
Hi!
How can I put a background of the page or a table, but it will be not repeateing itself???
Next regards from Herpysz!
-
Apr 27th, 2003, 02:28 AM
#2
Fanatic Member
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.)
-
Apr 27th, 2003, 05:20 AM
#3
Thread Starter
Addicted Member
where?
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.)
where I have to write: background-repeat: no repeat ???
Next regards from Herpysz!
-
Apr 27th, 2003, 10:02 AM
#4
Fanatic Member
Code:
<html>
<head>
<style type="text/css">
body {background-repeat: no-repeat; }
</style>
<body> etc...
or
Code:
(head)
<body style="background-repeat: no-repeat;">
etc...
-
Apr 27th, 2003, 01:27 PM
#5
Thread Starter
Addicted Member
Next regards from Herpysz!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|