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

Anwar Rizalman
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Anwar Rizalman
Python Development Techdegree Graduate 33,620 Points

Is background-size: cover the same as background-size: 100%; ?

In the video [Background: Size and Position], the background-size: cover was introduced and I am just wondering if it is the same as background-size: 100% ? Of course I did tested both and the site looks the same but it may be different on other screen.

Thank you!

Jonathan Borteij
Jonathan Borteij
866 Points

background-size: 100%;

The image will fill entire width of the parent container, but not height. Aspect ratio will stay the same

background-size: cover;

It will zoom in to fill the parent container. Some of the image will be cut off

1 Answer

Steven Parker
Steven Parker
229,732 Points

Using "cover" will preserve the aspect ratio, but "100%" will not. Unless the aspect ratio just happens to be the same as the space, "100%" will distort it to fit.

But "cover" will magnify and crop, preserving the aspect ratio but cutting off a bit of the image to do so.