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 trialYash Bapat
Front End Web Development Techdegree Student 1,473 PointsWhy does my image caption show up next to the image instead of below it.
Hey! Sorry maybe a silly mistake I am not catching, but when I add a caption to my image, in the preview page the caption is displayed next to my image instead of below it. Below is the code in between the figure tags. Thanks in advance for the help!
<figure>
<img src="img/vr-space.jpg" alt="User experiencing space in VR">
<figcap>
VR User can explore far away places
</figcap>
</figure>
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsTry changing your use of <figcap>
to <figcaption>
Yash Bapat
Front End Web Development Techdegree Student 1,473 PointsYash Bapat
Front End Web Development Techdegree Student 1,473 PointsHi Jonathan, thank you so much for your help! Changing it to <figcaption> worked.