Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Full Background image

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #39818
    arawass
    Participant

    Hello,

    I’m trying to find a way to do something with the background image on a website, exactly similar to http://www.dkny.com website.
    As you can see, the pictures is resizable with the window no matter how big or small it is. (test with resizing the browser window)

    how can I do that? and is there a recommended picture size?

    #109985
    djrolstad
    Participant

    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’images/background.png’, sizingMethod=’scale’);

    #109997
    TheDoc
    Member
    #110062
    arawass
    Participant

    @TheDoc
    Thank you :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.