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> .btn-group { affichage: flex; flex-direction: colonne; } .button { couleur de fond: #D74444; largeur: 150px; bordure: 1px solide vert; couleur: blanc; padding: 15px 32px; text-align: center; text-decoration: none; taille de police: 16px; curseur: pointeur; } .btn-group .button:hover { couleur-de-fond: dodgerblue; } .btn-group .button:not(:last-child) { border-bottom: none; /* Empêcher les bordures doubles */ } </style> </head> <body> <h2>Groupe de Boutons Vertical</h2> <div class="btn-group"> <button class="button">Bouton</button> <button class="button">Bouton</button> <button class="button">Bouton</button> <button class="button">Bouton</button> </div> </body> </html>