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> <head> <style> p { couleur-de-fond: rouge !important; } #myid { couleur de fond: bleu !important; } .myclass { background-color: gray !important; } </style> </head> <body> <h2>Règles !important déroutantes</h2> <p>Ceci est un paragraphe.</p> <p class="myclass">Ceci est un paragraphe.</p> <p id="myid">Ceci est un paragraphe.</p> </body> </html>