I am facing an issue with floating elements inside the <li>
tag.
Below is my current markup:
<li>
<img src="concept-truck.jpg" alt="2013 Toyota Tacoma" id="itemImg" style="float:left">
<p>2013 Toyota Tacoma</p>
<p>Price: $450,000</p>
<p>Year: 2013</p>
<p><a href="/item/index/63">more</a></p>
</li>
While it works fine in Firefox and Internet Explorer, in Chrome the list numeration also floats along with the image. Any suggestions on how to resolve this issue? Thank you!