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> .container { afficher: flex; flex-flow: row wrap; couleur-de-fond: DodgerBlue; } .container div { couleur de fond: #f1f1f1; largeur: 100px; marge: 10px; padding: 10px; text-align: center; taille-de-police: 30px; } </style> </head> <body> <h1>La propriété flex-flow</h1> <p>La propriété flex-flow est une propriété abrégée pour les propriétés flex-direction et flex-wrap.</p> <div class="container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> </div> <p>Essayez de redimensionner la fenêtre du navigateur.</p> </body> </html>