<a> tags in CSS
Posted: Thu Oct 08, 2009 10:13 am
pickle | Please use [ code=php ], [ code=text ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:
Posting Code in the Forums to learn how to do it too.
I inherited this piece of code which works fine in Firefox, however in IE it doesn't show the link at all. I'm sure it's a syntax problem but I've validated both this and the HTML. If it helps I'll post the HTML. Thanks.
pickle | Please use [ code=php ], [ code=text ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:
Posting Code in the Forums to learn how to do it too.
I inherited this piece of code which works fine in Firefox, however in IE it doesn't show the link at all. I'm sure it's a syntax problem but I've validated both this and the HTML. If it helps I'll post the HTML. Thanks.
Code: Select all
a.info {
position: relative;
color: #000;
text-decoration: none;
font-size: 10px;
}
a.info span {
display: none;
}
a.info:hover {
background: none;
z-index: 500;
color: #F30;
}
a.info:hover span {
text-align: center;
display: inline;
position: absolute;
white-space: nowrap;
top: -20px;
left: 20px;
background: #777777;
color: #FFFFFF;
padding: 3px;
border: 1px solid #1ca1cd;
border-left: 5px solid #1ca1cd;
overflow: visible;
}pickle | Please use [ code=php ], [ code=text ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: