Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> body { text-align: center; font-family: Roboto, Helvetica, Arial, sans-serif; } .auto { cursor: auto; } .help { cursor: help; } .cursor { display: flex; flex-wrap: wrap; } .cursor > div { flex: 120px; padding: 10px 2px; white-space: nowrap; border: 2px solid #666; border-radius: 20px; margin: 0 5px 5px 0; } .cursor > div:hover { background: #eee; } </style> </head> <body> <h2>Exemple de la propriété cursor</h2> <div class="cursor"> <div class="auto">auto</div> <div class="help">help</div> </div> </body> </html>