Cursor effects

liunx

Guest
Does any one know anymore curser effects, i already know the crosshair one.


<sdtyle>
cursor: crosshair;
</stylE>

Any others?Possibly this link? (<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/ui.html">http://www.w3.org/TR/REC-CSS2/ui.html</a><!-- m -->)a:hover {
cursor : hand;
cursor : crosshair;
cursor : text;
cursor : wait;
cursor : default;
cursor : help;
cursor : e-resize;
cursor : ne-resize;
cursor : n-resize;
cursor : nw-resize;
cursor : w-resize;
cursor : sw-resize;
cursor : s-resize;
cursor : se-resize;
cursor : auto;
}Use the cursors in the link that Paul gave, as they are the valid ones. cursor: hand; is IE only. cursor: pointer; is the correct, cross-browser way of doing it.I just went into Dreamweaver and got that list since I use it to create all my CSS files.

I then check the file in Notepad and format it to how I want.

Thanks for your comment Pyro. I am glad I came here now because I had a problem before with some CSS where the 'cursor:hand' was giving me problems in Mozilla and I can now change my CSS.
 
Back
Top