Forum Moderators: not2easy

Message Too Old, No Replies

CSS PopUps and Opera

Any way to make them work?

         

Nick_W

4:04 pm on Nov 23, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi all,

Having lots of fun with CSS popups but can' seem to make them work in Opera?

<a href="blah.html">Blah blah<span>Read more about blah here..</span></a>

a span {
display: none;
}
a:hover span {
display: inline;
position: absolute;
top: 100px;
}

Anyone messed with this and got it to work in Opera?

Thanks...

Nick

tedster

5:03 pm on Nov 23, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Opera doesn't seem to support any effect that could potentially require text to be re-flowed on the page. I ran into this once trying for a text-transform effect on hover. As I tried different approaches, it became pretty clear that Opera doesn't re-flow text.

Your <span> style might require that if regular text followed the anchor tag.