Computer >> Máy Tính >  >> Lập trình >> CSS

Thuộc tính con trỏ của CSS


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>