このチャプターの目次
概要:
container の設定になります
- コンテンツ枠ような、使いと方思います
- コード
https://github.com/kuc-arc-f/tailwind-sample/blob/main/src/01_container.html
src/01_container.html
- px-8 : マージン水平方向 のようです。
01_container.html
<div class="container mx-auto px-8">
<h1 class="text-4xl font-bold text-center">container</h1>
</div>
- 参考のデモページ
https://kuc-arc-f.github.io/tailwind-sample/src/01_container.html
....