使用 Layout 模擬器學習最基礎的 Flex 佈局
/* Flex 容器 */ .container { display: flex; flex-direction: row; justify-content: flex-start; align-items: stretch; flex-wrap: nowrap; gap: 10px; }