Here is the HTML structure I am working with:
<div class="footerMenu">
<ul>
<li>Home</li>
<li>About</li>
<li>Feedback</li>
<li>Contact us</li>
</ul>
</div>
However, the following code snippet doesn't seem to work in IE8:
.footerMenu li:last-child { }
According to this MSDN link, the pseudo-selector should be supported in IE8. Any assistance on this matter would be greatly appreciated!