I'm using HTML5 reset as the basis for writing an HTML5/CSS3 website. For some reason though, basic anchor tags are no longer clickable in anything other than IE!
<a href="http://www.google.com">google</a>
renders in the correct colour text for A tags, but no hover effect is being applied, the pointer doesn't change and I cant click the link.
Firebug gives me the following when I inspect it:
a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent none repeat scroll 0 0;
border:0 none;
color:#555555;
font-size:100%;
margin:0;
padding:0;
text-decoration:none;
text-transform:lowercase;
vertical-align:baseline;
}
*|*:link {
color:#0000EE;
}
*|*:-moz-any-link {
text-decoration:underline;
}
:-moz-any-link {
cursor:pointer;
}
So nothing of note I can see, and it does the same in Chrome and Opera, so I'm a bit miffed. Im developing on my local host so have no URL to post at present, but the HTML markup being rendered is nothing amazing:
<div id="copyanddesign">
© Someone 2010.
Design by <a href="http://www.google.com">google</a>
</div>
Any suggestions most welcome!
Thanks