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 trialKonstantinos Isaias
516 Pointsi tried to use border-radius: 100%; but nothing happend
how do i make it work? my hole css and html are correct
2 Answers
Rich Bagley
25,869 PointsHi Konstantinos,
Without seeing your code its a bit of a guess but have you included the relevant browser prefix if required?
This page gives quite a few good examples: http://css-tricks.com/almanac/properties/b/border-radius/
Just to confirm the general structure would look something like this:
.class-name {
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
}
Hope that helps
-Rich
Konstantinos Isaias
516 Pointsthank you :)