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> span { afficher: bloc; } </style> </head> <body> <h1>Affichez les éléments span comme des éléments de bloc</h1> <span>Une propriété d'affichage avec</span> <span>une valeur de "block" entraîne</span> <span>une rupture de ligne entre chaque élément span.</span> </body> </html>