❯ TIL / CSS 置中方式CSS 置中方式2025年11月8日總是記不起來 CSS 置中方式,因此做一個小筆記。Normal Flow .container { text-align: center; } Grid Layout .container { display: grid; place-items: center; } Flex Layout .container { display: flex; justify-content: center; align-items: center; flex-direction: column; } ← TIL:設定 Hugo 開發環境,整合 Linter 與程式碼格式化