I have a Menu where each item has an image, and I am looking to connect those images with a horizontal line.
<ul>
<li>
<a href="#" title="Item1"><img src="foo/bar.png"></a>
</li>
<li>
<a href="#" title="Item2"><img src="foo/bar2.png"></a>
</li>
</ul>
To illustrate my point, here are 2 images:
Original:
https://i.sstatic.net/MBVwE.png
Desired Outcome:
https://i.sstatic.net/I2ncN.png
I am unsure about the necessary CSS properties to achieve this effect or if it can be done purely using CSS.