Forums

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

Home Forums CSS fluid with div

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #24856
    nidhins
    Member

    hi everyone

    can anyone help me in creating a fluid width div whose width changes exactly like the body width…

    thanks

    Nidhin

    #57604
    chazzwick
    Member

    if you want the width of the div to be the same as the body all you have to do is not declare a width on the div, it will inherit width from the body.

    #57605
    AshtonSanders
    Participant

    And if you want the div to be 50px from both sides of the screen at all time:

    Code:
    margin: 0 50px;

    And if you want the div to be 5% from both sides of the screen at all time:

    Code:
    margin: 0 5%;

    (Since I just finished doing that, you can see an example (of shameless advertising :D ) here: http://cssvideos.com/)

    #57611
    nidhins
    Member

    thanks for the help….

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