Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>La propriété cursor</h2> <p>Passez la souris sur les mots pour changer le curseur.</p> <span style="cursor:auto">auto</span><br> <span style="cursor:crosshair">réticule</span><br> <span style="cursor:default">par défaut</span><br> <span style="cursor:e-resize">e-redimensionner</span><br> <span style="cursor:help">aide</span><br> <span style="cursor:move">déplacer</span><br> <span style="cursor:n-resize">n-redimensionner</span><br> <span style="cursor:ne-resize">ne-redimensionner</span><br> <span style="cursor:nw-resize">nw-redimensionner</span><br> <span style="cursor:pointer">pointeur</span><br> <span style="cursor:progress">progrès</span><br> <span style="cursor:s-resize">s-redimensionner</span><br> <span style="cursor:se-resize">se-redimensionner</span><br> <span style="cursor:sw-resize">sw-redimensionner</span><br> <span style="cursor:text">texte</span><br> <span style="cursor:w-resize">w-redimensionner</span><br> <span style="cursor:wait">attendre</span><br> </body> </html>