Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 커서 속성


커서 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>