Results 1 to 5 of 5

Thread: Background?

  1. #1

    Thread Starter
    Addicted Member herpysz's Avatar
    Join Date
    Mar 2002
    Location
    Europe>Moldova>Kishinev
    Posts
    176

    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!

  2. #2
    Fanatic Member riis's Avatar
    Join Date
    Nov 2001
    Posts
    551
    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.)

  3. #3

    Thread Starter
    Addicted Member herpysz's Avatar
    Join Date
    Mar 2002
    Location
    Europe>Moldova>Kishinev
    Posts
    176

    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!

  4. #4
    Fanatic Member riis's Avatar
    Join Date
    Nov 2001
    Posts
    551
    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...

  5. #5

    Thread Starter
    Addicted Member herpysz's Avatar
    Join Date
    Mar 2002
    Location
    Europe>Moldova>Kishinev
    Posts
    176

    thanks

    thanks...
    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
  •  



Click Here to Expand Forum to Full Width