cursor style property
Specifies or returns the type of cursor to display for the pointing device (mouse).
Internet Explorer from version 6 supports custom cursors stored in .cur or .ani file types.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: cursor |
Possible values:
The type of this property is string.
One of the following values: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Default: auto
Example HTML code 1:
This example illustrates the use of the cursor property:
|
||||
<head> <style> .example { cursor: pointer; } </style> </head> <body> <div class="example">Move the mouse over this text!</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the cursor property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeCursor (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var selectState = selectTag.options[whichSelected].text; document.body.style.cursor = selectState; } </script> </head> <body> Change the type of the cursor and move the cursor over the body <select onchange="ChangeCursor (this);" size="17"> <option />all-scroll <option />col-resize <option />crosshair <option />help <option />move <option />no-drop <option />not-allowed <option />pointer <option />progress <option />row-resize <option />text <option />vertical-text <option />wait <option />n-resize <option />ne-resize <option />nw-resize <option />e-resize </select> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.currentStyle, htmlElement.runtimeStyle, htmlElement.style
HTML elements:
a, abbr, acronym, address, applet, b, bdo, big, blink, blockquote, body, button, caption, center, cite, code, col, colgroup, dd, del, dfn, dir, div, dl, dt, em, embed, fieldset, font, form, h1, h2, h3, h4, h5, h6, hr, html, i, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:range, input:reset, input:search, input:submit, input:text, ins, isindex, kbd, label, legend, li, listing, marquee, menu, nobr, object, ol, p, plaintext, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tr, tt, u, ul, var, xmp
External links:
User Contributed Comments