 |
|
 |
Cursors
Written by: Kikyou
Added: 2004-04-13
Views [ 8940 ]
Requirements: HTML editor
This tutorial lists some of the different cursors besides the hand.
Hover over the list to see the different types of cursors you can use.
hand
default
crosshair
move
n-resize
s-resize
w-resize
e-resize
ne-resize
sw-resize
nw-resize
se-resize
text
wait
help
vertical-text
progress
not-allowed
no-drop
row-resize
col-resize
all-scroll
After you choose the cursor you want to use, insert this in the CSS:
cursor: cursor name
It should look like this:
a:link, a:visited, a:active
{
color: #color;
text-decoration: none;
cursor: cursor name;
}
a:hover
{
color: #color;
text-decoration: none;
cursor: cursor name;
}
Make sure you define the same cursor for a:link, a:visited, a:active, and a:hover.
The hand is used frequently, but you can use a different cursor that suits your preferences.Help
Problems? Questions? Please ask at the Message Board.
|
 |
|
 |