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

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

  • 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.
  • 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.
  • How could it be a fixed height if it's responsive though?
  • why not? mobile browsers scroll also so height is not that much as an issue as width of a device.
  • @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
  • As far as when to use px, % or em, it all depends on the situation for me and exactly how responsive i want the particular site to be.
  • 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 */
    }


  • **
    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
    **
  • I think you may be over thinking it just a little bit...simple is better, don't make your life any harder than it has to be...why not just use some media queries to save your self all of that trouble? or do you HAVE to have a completely fluid responsive design?
  • 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.
  • 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.
  • I'm with you mikes02. My brain is a bit foggy on this responsive stuff too. I want to make my designs as fluid as possible, so that I'm not making a bunch of different layouts with media queries.
  • 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.

  • Percentage doesn't work for HEIGHTS.

    Any percentage is ALWAYS a percentage of the page WIDTH.

  • @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.

  • 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.

  • @joshuanhibbert You are right. I 'over-spoke'.

  • 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.

  • I think you will find, for the most part, that responsiveness rarely relates to height.

    Elements don't tend to change their heights to any great extent. If you wanted some text below a responsive image, I would use pixels rather than % or ems...much easier to understand.

    If they need adjusting re viewport widths then media queries are your friend....which was the OP's first conclusion. :)