1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>flex</title> <style> .container{ width: 100%; height: 350px; background-color: aqua; display: flex; display: -webkit-flex; flex-direction: column; flex-wrap: nowrap; justify-content: center; align-items: center; align-content: center; } .item{ width: 80px; height: 50px; margin: 5px; } </style> </head> <body> <div class="container"> <div class="item" style="background-color: antiquewhite;"></div> <div class="item" style="background-color: burlywood;"></div> <div class="item" style="background-color: cornflowerblue;"></div> </div> </body> </html>
|