Bootstrap 列固定宽度的卡片(自适应)

Bootstrap card with fixed width in a column (responsive)

我有一个 Bootstrap-card,但它的 width 有问题。我希望那张卡片能充分利用我设置的栏目。这是我使用的一段代码和显示实际宽度和想要的屏幕截图(蓝色背景)。

你知道有什么好的解决方案可以让我的目标固定下来吗?请考虑响应视图。

<div class="row">
    <ng-container *ngFor="let event of events">
        <div class="col-12 col-lg-6 d-flex mt-5">
            <!-- Card -->
            <div class="card shadow-light-lg lift lift-lg">
                <a class="card-body my-auto">
                    <div class="d-flex justify-content-between align-content-center align-items-center py-3">
                        <!-- some content -->
                        <h3 class="mt-auto">
                            {{event.title}}
                        </h3>

                        <div class="mb-0 text-muted" id="card-description">
                            {{event.description}}
                        </div>
                    </div>
                </a>
            </div>
        </div>
        ...
    </ng-container>
</div>

未正确应用宽度。要么给出 100% 的宽度。其次,您正在使用 display-flex。所以就像 parent 有 flex 然后项目被赋予相应的宽度。

请在 stackblitz 上分享您的代码,以便我们更好地帮助您。调试起来会容易很多。