Some Cursor Types On Blogger

Some Cursor Types On Blogger - When visiting a blog you sometimes find a different cursor when selecting on one of the links/items for reasons of a blog or other variations, under the following CSS code:


ValueDemo CursorWriting
defaultEXAMPLE (HOVER)cursor: default
crosshairEXAMPLE (HOVER)cursor: crosshair
handEXAMPLE (HOVER)cursor: hand
pointerEXAMPLE (HOVER)cursor: pointer
Cross browserEXAMPLE (HOVER)cursor: hand
moveEXAMPLE (HOVER)cursor: move
textEXAMPLE (HOVER)cursor: text
waitEXAMPLE (HOVER)cursor: wait
helpEXAMPLE (HOVER)cursor: help
n-resizeEXAMPLE (HOVER)cursor: n-resize
ne-resizeEXAMPLE (HOVER)cursor: ne-resize
e-resizeEXAMPLE (HOVER)cursor: e-resize
resizeEXAMPLE (HOVER)cursor: resize
s-resizeEXAMPLE (HOVER)cursor: s-resize
sw-resizeEXAMPLE (HOVER)cursor: sw-resize
w-resizeEXAMPLE (HOVER)cursor: w-resize
nw-resizeEXAMPLE (HOVER)cursor: nw-resize
progressEXAMPLE (HOVER)cursor: progress
not-allowedEXAMPLE (HOVER)cursor: not-allowed
vertical-textEXAMPLE (HOVER)cursor: vertical-text
all-scrollEXAMPLE (HOVER)cursor: all-scroll
col-resizeEXAMPLE (HOVER)cursor: col-resize
row-resizeEXAMPLE (HOVER)cursor: row-resize

For users, please insert one of the above cursor types as needed. As an example :

cursor:hover {
color:#fff !important;
background:#111;
padding:5px;
transition-duration:2s;
-moz-transition-duration:2s;
-webkit-transition-duration:2s;
cursor:help;
}