I'm dealing with a document structure that is consistent across multiple pages.
HTML:
<ul>
<li>
<div>
<img src="" />
</div>
</li>
</ul>
Presently, there is a border around all img elements. The client has requested that I remove the border from the image, as not all images are of the same size and they want a uniform appearance without borders. Upon inspection, I noticed that the images are wrapped in a div that lacks an id or class. How can I effectively select this div in my CSS?
Many thanks.