Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Build a Responsive Website Creating a Fluid Foundation Scalable Images

converting px to %

/* When setting ?exible margin on an element, your context is the width of the element’s container. When setting ?exible padding on an element, your context is the width of the element itself. */

If the padding on .cake is 10 px, would the formula not be 10 / 10 = 1% ?

4 Answers

Hi Jeff,

It mentions in the comment that the context is the width of the element itself. So you want to divide the 10 by the width of the .cake element.

They've left a comment in there indicating what the width of the .cake element is in pixels.

It depends on the users screen resolution, so a width of 1920px is 100% but also 1600px is 100%

Thank you, Mark. This kicked my brain into gear. I appreciate your time to help.

All the best,

Jeff

-

Thank Jason. Perfect answer, I think I was just getting in too big of a hurry. Your answer was a big help, thank you for taking the time to reply.

All the best,

Jeff

You're welcome.