<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .flex-container { display: flex; /*默認值:從左到右排列*/ /*flex-direction: row;*/ /*從右到左排列*/ flex-direction: row-reverse; /*從上到下排列*/ /*flex-direction: column;*/ /*從下到上排列*/ /*flex-direction: column-reverse;*/ /*flex-flow是flex-direction和flex-wrap的縮寫,默認值:flex-flow:row nowrap;*/ width: 400px; height: 400px; background-color: gray; } .flex-item { background-color: green; width: 100px; height:100px; margin: 5px; } </style> </head> <body> <div class="flex-container"> <div class="flex-item">flex item 1</div> <div class="flex-item">flex item 2</div> <div class="flex-item">flex item 3</div> </div> </body> </html>