द कर्सर CSS की संपत्ति आपको कर्सर के प्रकार को निर्दिष्ट करने की अनुमति देती है जिसे उपयोगकर्ता को प्रदर्शित किया जाना चाहिए।
उदाहरण
<html> <head> </head> <body> <p>Move the mouse over the words and see the changes in cursor:</p> <div style = "cursor:auto">Auto</div> <div style = "cursor:crosshair">Crosshair</div> <div style = "cursor:default">Default</div> </body> </html>