Bootstrap 如何将容器的宽度更改为1400px? 0 By 董德多 on 2024年1月19日 Bootstrap 思路是先定义一个宽度 1400px 的容器,然后在容器中使用 bootstrap 中的container-fluid全宽样式。 .wrapper{ width: 1400px; margin: 0 auto; } <div class="wrapper"> <div class="container-fluid"></div> </div> container-fluid