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

HTML How to Make a Website Adding Pages to a Website Make an About Page

Ricardo Narciso
Ricardo Narciso
751 Points

display="block" ?

Hi everyone! Iยดm stuck on this one and I have tried several approaches with no success. Can anyone give a tip about this one?

Thank you!

<section> <img src="img/gratt.png" alt="This is a test image of Gratt!!" class="profile-photo" display="block"> <p> This is a paragraph text about myself.</p> </section>

2 Answers

 <img src="img/gratt.png" alt="This is a test image of Gratt!!" class="profile-photo" style="display: block">
    <p> This is a paragraph text about myself.</p>
Damien Watson
Damien Watson
27,419 Points

Hi Ricardo,

'display:block' is a css setting, not an attribute. You can apply this via css (in your 'profile-photo' class - preferred) or inline styling. It would look something like:

/* CSS */
.profile-photo   { display:block; }
<!-- HTML -->
<img src="img/gratt.png" alt="This is a test image of Gratt!!" class="profile-photo">
<p> This is a paragraph text about myself.</p>