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 CSS Basics (2014) Basic Layout Basic Layout Review

If we specify one background-position value, the browser will assume the vertical position value is… What?

I've tried so many different answers to this. Does anyone know what it is?

it would be the same if you only specified one value.

background-position: top;
background-position: bottom;
background-position: left;
background-position: right;
background-position: center;

if you give two you can control the vertical access separately.

background-position: 25% 75%;
background-position: 0px 0px, center;

Answer to the quiz is center

That's what I thought. The fill-in-the-blank for the quiz would't accept the answer though. Strange. Thanks for your help, John!

1 Answer

Sorry I just went through the quiz to see which question you were referring to.

the answer is center

Oh, okay. That makes sense.