Bootstrap类似乎没有任何作用

t40tm48m  于 2022-12-07  发布在  Bootstrap
关注(0)|答案(1)|浏览(109)

我得到了一个Web应用程序的所有权,它是bootstrap(5)和html代码的混合。问题是如果我试图使用col-md-offset-4推送一个专栏,它根本不起作用。
不只是col-md-offset-4,任何col-md-offset-* 都不起作用。

<div class="container">
  <h1>Responsive Columns</h1>
  <p>Resize the browser window to see the effect.</p>
  <p>The columns will automatically stack on top of each other when the screen is less than 576px wide.</p>
  <div class="row">
    <div class="col-sm-3 ">.col</div>
    <div class="col-sm-3 ">.col</div>
    <div class="col-sm-3 ">.col</div>
    <div class="col-sm-3 ">.col</div>
  </div>
</div>
6mw9ycah

6mw9ycah1#

语法略有不同:这里的语法是class="col-md-4 offset-md-4"
第一个

相关问题