#cursor
Sets the mouse cursor when hovering the element.
          cursor: default;
        
Sets the cursor to the element's default value. For a link, it would be a pointer. For text it would be a selection cursor.
          cursor: auto;
        
auto
          cursor: pointer;
        
pointer
          cursor: move;
        
move
          cursor: crosshair;
        
crosshair
          cursor: text;
        
text
          cursor: wait;
        
wait
          cursor: help-resize;
        
help-resize
          cursor: ne-resize;
        
ne-resize
          cursor: nw-resize;
        
nw-resize
          cursor: n-resize;
        
n-resize
          cursor: se-resize;
        
se-resize
          cursor: sw-resize;
        
sw-resize
          cursor: s-resize;
        
s-resize
          cursor: w-resize;
        
w-resize