Looking for some help here!
I have a list that I want to style and make it expand from right to left like in the images provided below:
https://i.sstatic.net/H4LGb.png
This is how my list currently looks:
<div id="menu-wrapper">
<ul>
<li><a href=""><img src="btn1.gif" alt="" /></a></li>
<li><a href=""><img src="btn2.gif" alt="" /></a></li>
</ul>
</div>
//CSS
#menu-wrapper {float:right;width:40px;}
Any ideas on how I can achieve the hover effect of expanding the list items from right to left?