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

CSS

59px to %

Hi there, does anyone know exactly what 59px is in percentages?

Casey Clayton
Casey Clayton
16,708 Points

Well we would need the width of the container that it is in. So lets say you have a container div of 800px, well to get the percentage you would take 59/800 which = 0.07375 so we just move the decimal to the right 2 places to get the percentage which is 7.375% to be exact. So just figure out the size of your container and use the formula.

Thanks, Casey!