Heim >Web-Frontend >CSS-Tutorial >CSS-Cursor-Eigenschaften
Mit der
cursor-Eigenschaft des
CSS können Sie den Cursortyp angeben, der dem Benutzer angezeigt werden soll.
<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>
Das obige ist der detaillierte Inhalt vonCSS-Cursor-Eigenschaften. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!