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> a.bouton { couleur de fond: #8c8c8c !important; couleur: blanc !important; padding: 5px !important; bordure: 1px solide noir !important; text-decoration: none !important; } #myDiv a { couleur: rouge; couleur de fond: jaune; } </style> </head> <body> <p>Bouton de lien standard :<a class="button" href="#">Tutoriel CSS</a></p> <div id="myDiv"> <p>Un texte de lien à l'intérieur de #myDiv :<a href="#">Tutoriel HTML</a></p> <p>Un bouton de lien à l'intérieur de #myDiv :<a href="#" class="button">Tutoriel HTML</a></p> </div> </body> </html>