Cursor
Усі типи:
Подивитися візуально можна тут:
Простий синтаксис
Last updated
Last updated
<span style="cursor:help">help</span>
<p style="cursor:wait">wait</p><!DOCTYPE html>
<html>
<head>
<style>
.cell {cursor: cell;}
.move {cursor: move;}
.pointer {cursor: pointer;}
</style>
</head>
<body>
<h1>The cursor Property</h1>
<p>Mouse over the words to change the mouse cursor.</p>
<p class="cell">cell</p>
<p class="move">move</p>
<p class="pointer">pointer</p>
</body>
</html>