🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[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> ```