vote up 5 vote down star

What causes this to happen? (the mouse is not being moved or clicked)

alt text

flag
I can't tell what is going on in that screenshot - it is too small – finnw Jun 4 at 12:54
Some optical mice, on surfaces like blank sheet of paper, tend to move by themselves back and forth by a few pixels. Not sure if this is the case, but it happens. – Piskvor Jun 4 at 12:56
3  
It causes the cpu usage of Firefox to spike. Interesting. – jjnguy Jun 4 at 12:58
1  
It happens to me too. WinXP, Firefox 3. – jjnguy Jun 4 at 12:59
heh. StackOverflow front page, if you position your mouse just right.... – OtherMichael Jun 4 at 13:04
show 2 more comments

4 Answers

vote up 12 vote down

I suspect that the :hover CSS style results in the object having a different size (possibly margin), which causes the :hover CSS style to cease to be applied. This returns the object to its original dimensions, and the :hover CSS style is applied by the browser once more.

The browser can only keep up with this at a certain rate and you see visible flickering.

link|flag
vote up 8 vote down

It's an edge condition.

link|flag
4  
+1 for the (un?)intended pun – scunliffe Jun 4 at 12:56
1  
lol . – Greg B Jun 4 at 12:58
isn't it called "Borderline personality" ?! :-) – Billy Jun 4 at 13:03
vote up 2 vote down

At a guess, the rollover event is adding a border which changes the effective size of the element, so that the mouse is no longer over it, or something like that...

link|flag
vote up 3 vote down

It is because you are adding a border on hover.
But because you hover near the top, when the border is added, your cursor goes outside of the element.
Would be best to add

border: 1px solid #FFFFFF;
border-bottom: 0px;

to begin with, in your CSS

link|flag
2  
just realised it is actually the stack overflow website... doh! :) – danrichardson Jun 4 at 12:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.