|
CodeAve.com - CSS - Page Display | |||
|
|
|||
| Cursor Types | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - Cursor Types</title> <style type="text/css"> <!-- body {cursor: help} /* The default cursor for anything within the body tags of the document will render the help cursor as opposed to the typical pointer When the mouse cursor is placed over any of the text below between style tags that respective cursor will be revealed */ --> </style> </head> <body bgcolor="#FFFFFF"> Place the mouse cursor over any of the text below<br> to reveal a different cursor. The deafult cursor for<br> this page is the help cursor, set by the style command in the<br> header portion of the document<br><br> <b> <span style="cursor: crosshair;">Crosshair Cursor</span> <br> <span style="cursor: hand;">Hand Cursor</span> <br> <span style="cursor: wait;">Wait/Hourglass Cursor</span> <br> <span style="cursor: help;">Help Cursor</span> <br> <span style="cursor: text;">Text/Edit Cursor</span> <br> <span style="cursor: move;">Moveable Object Cursor</span> <br> <span style="cursor: n-resize">Resize Up (North)</span> <br> <span style="cursor: s-resize">Resize Down (South)</span> <br> <span style="cursor: e-resize">Resize Right (East)</span> <br> <span style="cursor: w-resize">Resize Left (West)</span> <br> <span style="cursor: ne-resize">Resize Up + Right (North East)</span> <br> <span style="cursor: nw-resize">Resize Up + Left (North West)</span> <br> <span style="cursor: se-resize">Resize Down + Right (South East)</span> <br> <span style="cursor: sw-resize">Resize Down + Left (South West)</span> <br> <span style="cursor: auto">Auto Cursor</span> <br> <span style="cursor: default">System Defalt Cursor</span> </b> </body> </html>
|
||||
|
|
||||