引导网格不会在整个屏幕宽度上扩展

我有以下代码,其中1行2列。但是,屏幕的边缘有很多额外的空间。知道如何解决吗?

<div class="container">
<div class="row">
    <div class="col col-md-3">
        <div class="card h-100">
            <p class="card-body">This card on the left of the other two cards,with a fixed height and scrolling.</p>
        </div>
    </div>
    <div class="col col-md-9">
        <div class="card">
            <p class="card-body">How do you want to ask the question?<p>
        </div>
        <div class="card">
            <p class="card-body">How should students ask the question?</p>
        </div>
    </div>
</div>

引导网格不会在整个屏幕宽度上扩展

history918 回答:引导网格不会在整个屏幕宽度上扩展

只需删除带有类容器的div。

<div class="row">
<div class="col col-md-3">
    <div class="card h-100">
        <p class="card-body">This card on the left of the other two cards,with a fixed height and scrolling.</p>
    </div>
</div>
<div class="col col-md-9">
    <div class="card">
        <p class="card-body">How do you want to ask the question?<p>
    </div>
    <div class="card">
        <p class="card-body">How should students ask the question?</p>
    </div>
</div>

本文链接:https://www.f2er.com/3130182.html

大家都在问