- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Cursors
n CSS, the cursor
property is used to change the mouse cursor’s appearance when it’s over an element. This property enhances user experience by providing visual feedback about the possible actions or the nature of the element. Here are some of the values you can use for the cursor
property:
auto
: The browser sets a cursor based on the context.default
: The default cursor, usually an arrow.none
: No cursor is rendered for the element.pointer
: A hand icon, indicating a link or clickable item.text
: Indicates text that can be selected.crosshair
: A crosshair, often used in graphics applications.move
: Indicates something that can be moved.not-allowed
: Indicates an action is not permitted.wait
: Indicates that the application is busy and the user should wait.help
: A question mark or a balloon, indicating help is available.resize
directions (e.g.,n-resize
,e-resize
,s-resize
,w-resize
): Indicate that an element’s edge can be resized in the north, east, south, or west direction.resize
diagonals (e.g.,ne-resize
,nw-resize
,se-resize
,sw-resize
): Indicate that an element’s corner can be resized in the specified diagonal direction.zoom-in
/zoom-out
: Indicate that something can be zoomed in or out.
Additionally, you can specify custom cursors using a URL value:
CSS
.custom-cursor {
cursor: url('path-to-cursor-image.png'), auto;
}