#!/bin/sh CURSORS=' auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed grab grabbing e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out' WORKDIR="$(dirname "$0")" for cur in ${CURSORS}; do printf '#cursors-%s { cursor: %s; }\n' "$cur" "$cur" done >| "${WORKDIR}/css-cursors-demo.css" ( printf \ ' CSS cursors demo

CSS cursors demo

You can hover on each word to get it"s corresponding cursor property

\n' ) >| "${WORKDIR}/css-cursors-demo.xhtml"