Con trỏ thuộc tính của CSS cho phép bạn chỉ định loại con trỏ sẽ được hiển thị cho người dùng.
Ví dụ
<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>