Hey everyone, I'm new to the world of HTML and CSS. Currently, I am working on designing some text above and centering an image. Additionally, I want the text to automatically wrap if the image is too long. Thank you for your help! Below is the code I am using for my HTML image and text:
<div class="imgcontainer">
<a href="#">
<img src="image.jpg" id="imageid" alt="" />
<span class="desc" id="text">
Centered Rollover Text
</span>
</a>
</div>