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

Alex Erickson
5,665 PointsPortfolio: why do my columns look weird?
So after floating the images on my portfolio page, there is still a big space between my second and third images. This happens no matter what order the images are in, so I don't think it can be a property of the image size. I've messed around with both the html and the css, and gone back in the videos to make sure my code is as close to the videos as possible, but it's still wonky. Here's my code; why does it look like this?
1 Answer

Julian Gutierrez
19,325 PointsThe problem is caused by the size of the images. Since the first image is taller than the second the third floated image is being forced by the float to take up the space left. To get it to skip down look into clearing your floats. This article at css tricks does a good job of explaining said situation. Float Explanation