ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## container - 容器 container 类的实现 ``` @media (min-width: 1280px) .container { max-width: 1280px; } ``` ## 实例 ### 居中显示 在0-768px 的只存上居中 ``` <div class="md:container mx-auto w-1"> <p>123</p> </div> ``` 在宽度为100% 中居中 ``` <div class="mx-auto w-1"> <p>123</p> </div> ```