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 trialJeff White
2,765 Pointsconverting 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
Jason Anello
Courses Plus Student 94,610 PointsHi 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.
banned banned
Courses Plus Student 11,243 PointsIt depends on the users screen resolution, so a width of 1920px is 100% but also 1600px is 100%
Jeff White
2,765 PointsThank you, Mark. This kicked my brain into gear. I appreciate your time to help.
All the best,
Jeff
banned banned
Courses Plus Student 11,243 Points-
Jeff White
2,765 PointsThank 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
Jason Anello
Courses Plus Student 94,610 PointsYou're welcome.