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 trialSteven Vasconcelos
1,091 PointsSelecting the list items inside the gallery. Float to left and set width to 45%
Not sure why i keep getting error this should be the correct code to complete the challenge.
gallery li {
float: left; width: 45%;}
2 Answers
Adam Moore
21,956 PointsI don't remember this one exactly, but the "gallery" would either be an ID or class tag, in which case it would be "#gallery" for an ID, and ".gallery" for a class.
Nazaam Kutisha
7,667 PointsIn order to style the list items inside of gallery you'll need the '#' selector. Structure like this.
#gallery li {
float: left;
width: 45%
}
This code will pass the challenge.
Best Nazaam