Forums

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

Home Forums CSS about box-sizing css

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #41499
    taragrg
    Member

    *{
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -box-sizing:border-box;
    }

    div{
    width:900px;
    }

    my Question is ok i add a padding-right than it wont effect the width of the div ok its fine but when i add margin-right the size gets increased does box-sizing doesnot work for margin or what is it how do a make it not chance on margin too Thanks

    #118706
    taragrg
    Member

    ok thanks @joshuanhibbert

    #118711

    I found [this](https://css-tricks.com/the-css-box-model/ “”) helpful..

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