PDA

View Full Version : mouse cursor



felipegm
December 1st, 2003, 11:32 AM
hi guys

how do I change the mouse cursor on a HTML web page?
Iīve tried to search the foruns, but didnīt find the search mode for HTML development.

Any help?
thanks

claudio
December 1st, 2003, 11:47 AM
Hmm dont know if its exactly what you want, but you can change the mouse cursor using CSS.

<span style="cursor:value">bla bla bla</span>Where value can be:url
auto
crosshair
default
pointer
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help

Marz
December 1st, 2003, 12:50 PM
That works claudio... But if he wants the entire page...



<body style="cursor: value"></body>


But.. having a span cover the whole page works too :)

claudio
December 1st, 2003, 01:23 PM
Yea, i was just pointing an example :thumb:

Marz
December 1st, 2003, 01:34 PM
I figured that ;)