我得到了一个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>
1条答案
按热度按时间6mw9ycah1#
语法略有不同:这里的语法是
class="col-md-4 offset-md-4"
第一个