My floating property seems to be causing some alignment issues with the text. When I use the float property, there is always some space left at the top of the following element.
Here is an example of my code:
<img src="badimage.jpg" alt="bad image" style="width:80px; height:180px;float:left"><br><br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel porttitor odio, et ullamcorper libero.</p>
The text does not align properly with the top of the image due to this extra spacing issue. How can I go about resolving this problem?