Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Bahar Noorbakhsh
2,070 Pointswidth for #gallery li set to 45% and doesn't work
gallery li {
float: left; width: 45%; margin: 2.5%; background-color: #f5f5f5; color: #bdc3c7;
when I minimise the browser I can't get my pics listed as it should be in the gallery. anyone can help please?
3 Answers

Joshua Gabriel
6,790 PointsIf you can post a snippet of your code, it would help me better understand your question. Based on the video I review that is attached to you question. Do you have a display set in your code?
Ex:
gallary { display: block; or inline; or inline-block; }

Bahar Noorbakhsh
2,070 Pointsyes sure...
gallery { margin: 0; padding: 0; list-style: none; }
gallery li { float: left; width: 45%; margin: 2.5%; background-color: #f5f5f5; color: #bdc3c7; }
gallery li a p { margin: 0; padding: 5%; font-size: 0.75em; color: #bdc3c7; }

Joshua Gabriel
6,790 PointsAre you trying to center the gallery?