首頁 >web前端 >css教學 >CSS的遊標屬性

CSS的遊標屬性

WBOY
WBOY轉載
2023-09-07 15:13:02628瀏覽

CSS的遊標屬性

CSS 的cursor屬性可讓您指定應向使用者顯示的遊標類型。

範例

<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>
#

以上是CSS的遊標屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除