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 trialKerin Chavarria
501 PointsBorder-radius problem in HTML & CSS HELP!!!
<section>
<img src="img/nick.jpg" alt="Photograph of Kerin" class="profile-photo">
<h3>About</h3>
<p>Hola, soy Kerin Chavarria. Este es mi portafolio de diseño donde comparto todos mis trabajos favoritos. Cuando no estoy diseñando cosas, disfruto haciendo ejercicio, jugando videojuegos, tomando un buen café mientras leo un libro, y más.</p>
<p> Si quieres seguirme en Twitter mi nombre de usuario es <a href="https://twitter.com/kerinchavarria_">@KerinChavarria_ </a>
<p> Y para Instagram es <a href="https://www.instagram.com/kerin/">@kerin</a></p>
</section>
.profile-photo {
clear: both;
display: inline-block;
margin: 0 auto 30px auto;
max-width: 150px;
border-radius: 50%;
}
picture is not appearing roundly. I've been having hard time trying to make this photo appear roundly.
1 Answer
Steven Parker
231,248 PointsIt's not clear from what is shown here if the HTML and CSS are mixed in one file. That could be a problem that wouldn't be seem by testing with the assumption that they are separate.
If that's not it, can you make a snapshot of your workspace and post the link to it here?
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsBrendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsI pasted your code into a codepen, substituted a placeholder image, and it seems to work.