Skip to content Skip to sidebar Skip to footer

Image Inside List Item Inside Link Not Clickable In Ie

The HTML code:

Solution 1:

You should provide a larger sample of your HTML, but I can already see that it's invalid:

<ahref='index.php'><li>
        ..
    </li></a>

Valid HTML would look like this (assuming HTML5!):

<ul><li><ahref="#"><imgsrc='images/icons/home.png'alt='' /><p>Home</p></a></li></ul>

Once you use valid HTML, it should work in IE.

(But, you didn't specify what version of IE, so I'm just guessing that it will.)

Post a Comment for "Image Inside List Item Inside Link Not Clickable In Ie"