treehouse : what would you like to learn today?
Web Design Web Development iOS Development

fluid with div

  • hi everyone

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


    thanks

    Nidhin
  • 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.
  • And if you want the div to be 50px from both sides of the screen at all time:

    margin: 0 50px;


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

    margin: 0 5%;


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