Layout 模擬器 (基礎版)

使用 Layout 模擬器學習最基礎的 Flex 佈局

1
2
3
4
5
/* Flex 容器 */
.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
}