> It sure did, thats wonderful :)
How so?
What about people that don't have your stylesheet or don't have any CSS at all?
There is a perfectly good attribute for additional information that
does not fit the normal link content - the title. And if you want to
go nuts on styling this information t
It sure did, thats wonderful :)
Thank you!
Els wrote:
> Scott Wilcox wrote:
>
>
>> I know IE has issues with :hover on anything but "a" elements,
>> but using the following snippet:
>>
>> a.info {
>>position: relative;
>>z-index: 20;
>>text-decoration: none;
>> }
>> a.info:hover {
Scott Wilcox wrote:
> I know IE has issues with :hover on anything but "a" elements,
> but using the following snippet:
>
> a.info {
>position: relative;
>z-index: 20;
>text-decoration: none;
> }
> a.info:hover {
>z-index: 25;
> }
> a.info span{
>display: none;
> }
> a.info:hov
hey folks.
I know IE has issues with :hover on anything but "a" elements, but using
the following snippet:
a.info {
position: relative;
z-index: 20;
text-decoration: none;
}
a.info:hover {
z-index: 25;
}
a.info span{
display: none;
}
a.info:hover span {
display: block;