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: jaune !important; } #myid { couleur-de-fond: bleu; } .myclass { couleur-de-fond: gris; } </style> </head> <body> <h2>Utiliser la règle !important</h2> <p style="background-color:orange;">Ceci est un paragraphe.</p> <p class="myclass">Ceci est un paragraphe.</p> <p id="myid">Ceci est un paragraphe.</p> </body> </html>