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 trialOscar Barragan
1,220 PointsWeb Dev: in the Portfolio page i cannot seem to get the last image to float left. code is correct
i had 2nd pair of eyes to look at and the below is what i have in my main.css file
#gallery li {
float: left;
width: 45%;
margin: 2.5%;
background-color: #f5f5f5;
color: #bdc3c7;
}
1 Answer
Joshua Veazey
6,190 PointsHi Oscar,
To float the 4th image to the left you need to create a new rule with a Pseudo-element using nth-child() Selector. So the new rule will look like this.
"#gallery li:nth-child(4n) { clear: left; }"
I Hope this helps.