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 How to Make a Website Responsive Web Design and Testing Adjust the Profile Page and Header

I cant get profile pic to float to the left side of the page

.profile-photo {
float: left; margin: 0 5% 80px 0; }

1 Answer

Thas Eagans
PLUS
Thas Eagans
Courses Plus Student 2,533 Points

Try something like this.

.profile-photo {
width: 20%;
float: left; 
margin: 0 5% 80px 0; 
display: inline-block;
}

Img is an inline element therefore margins will not work on them, which is why i added the display property. Also, whenever you float an element, also use the width property or you'll get unexpected results. Hope this helps.

</TREagans>

That worked. How come what he does in the example doesnt work?