Forums

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

Home Forums CSS Responsive Web Design: When to use px vs. % on margins and padding?

  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 23 total)
  • Author
    Posts
  • #35883
    mikes02
    Participant

    I read Ethan Marcotte’s book on Responsive Web Design but something that still isn’t clear to me is when to use px vs. % for margins and padding on elements. If any of you have the book, on page 37 there is an example where he uses:


    .article {
    padding: 40px 8.48056537%
    }

    When is it appropriate to use PX vs. %? I am confused about using the combination of the two on one element.

    #93636
    davidlab.be
    Participant

    that is px for top and bottem and % for left and right. Meaning the width is adjustable and the height will be a fixed height. Common for responsive web design, but you can also have the height adjust as well by using %…good for keeping content above the fold for different size browsers.

    #93640
    mikes02
    Participant

    How could it be a fixed height if it’s responsive though?

    #93641
    davidlab.be
    Participant

    why not? mobile browsers scroll also so height is not that much as an issue as width of a device.

    #93642
    noahgelman
    Participant

    @mikes02

    It can have a fixed width, but a responsive width. For example:

    #element {
    padding:20px 15%;
    }

    The height will stay the same but the width will change as you resize the page

    #93648
    mikes02
    Participant

    From what I understand, I set the width via percentage, I don’t touch the height at all, so let’s say I have a 500px width div inside of a 900px container, if I understand correctly the percentage would be:


    #sample-div
    {
    width: 55.55555555555556%; /* 500/900 = 0.5555555555555556 */
    }

    But then if I want to add 30px of padding to that div, according to the box model the div would be 440px so the new math would be:


    #sample-div
    {
    width: 48.88888888888889% /* 440/900 = 0.4888888888888889 */
    }

    So if I wanted to have 30px of padding all the way around the div? would it be


    #sample-div
    {
    width: 48.88888888888889% /* 440/900 = 0.4888888888888889 */
    padding: 30px 6.81818181818182%; /* 30/440 = 0.0681818181818182 */
    }

    or would it be percentage all the way around?


    #sample-div
    {
    width: 48.88888888888889% /* 440/900 = 0.4888888888888889 */
    padding: 6.81818181818182%; /* 30/440 = 0.0681818181818182 */
    }
    #93655
    davidlab.be
    Participant

    **
    Comment removed because there wasn’t really any need and this is a place of love, bunnies peace and other assorted furry animals. Thanks! :D

    – Robskiwarrior
    **

    #93669
    mikes02
    Participant

    I suppose it doesn’t have to be completely fluid, I was just trying that route out, but in the interest of time on this project you may be right in just using media queries to deliver different styles at the break points.

    #93684
    mikes02
    Participant

    For the record though, I am looking to find a better understanding of percetage based margins and paddings on fluid layouts, if possible, based on what I posted above.

    #111669
    relish27
    Member

    I’m also a little bit confused about height. I’ve been doing some of the mixed height-with-px-width-with-percentage business… but I have a situation where I want something absolutely fixed a certain percentage below an image that is resizing. I will probably just use media queries… but was hoping there was a more dynamic way to do this.

    #111677
    Paulie_D
    Member

    Percentage doesn’t work for HEIGHTS.

    Any percentage is ALWAYS a percentage of the page WIDTH.

    #111707

    @Paulie_D Hmm, not sure how accurate that last statement is? That is only true if there is no parent element with a width set.

    #111724
    Anonymous
    Inactive

    I don’t use heights very often, but will use padding/margin to adjust height. I use % and px for top/bottom margin/padding and things work just fine. % gives a more proportional look, whereas px gives a more predictable look.

    #111725
    Paulie_D
    Member

    @joshuanhibbert You are right. I ‘over-spoke’.

    #111732
    Vermaas
    Participant

    Check this definition: https://github.com/csswizardry/CSS-Guidelines#layout

    I think this guy is right. An element should never contain a height property. Only when it’s predefined (like an icon or a picture that needs a particular height).

    Thereby I prefer to use em’s or % instead of pixels to make everything flexible. Although height isn’t always that easy to define in paddings or margins.

    In using “height” in paddings or margins, you should use % instead of px, in case your website is responsive. Because the big deal about responsive is: it’s responsive. It should be responsive, so make it responsive. Pixels are not responsive.

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