Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> p { afficher: aucun; couleur-de-fond: jaune; padding: 20px; } div:hover p { afficher: bloc; } </style> </head> <body> <h2>Utilisez :hover pour afficher l'infobulle</h2> <div>Hover over this div element to show the p element <p>Tada ! Me voilà !</p> </div> </body> </html>