引导程序4中的“ . well”等价类是什么

在 bootstrap-3中,有一个 .well类,它在一个带有灰色背景颜色和一些填充的元素周围添加一个圆形边框。

<div class="well">Basic Well</div>

但是,我在 bootstrap-4中没有发现任何 .well类。在 bootstrap-4中是否有等价于 .well的标记?

121606 次浏览

威尔斯是从自举与 版本4下降。

你可以用 代替 Wells。

下面是一个关于如何使用 Cards 新特性的快速示例:

<div class="card card-inverse" style="background-color: #333; border-color: #333;">
<div class="card-block">
<h3 class="card-title">Card Title</h3>
<p class="card-text">This text will be written on a grey background inside a Card.</p>
<a href="#" class="btn btn-primary">This is a Button</a>
</div>
</div>

更新2018年。

card已经取代了 well

鞋带4

<div class="card card-body bg-light">
Well
</div>

或者强,作为两个 DIV..。

<div class="card bg-light">
<div class="card-body">
...
</div>
</div>

(注意: 在 Bootstrap 4 Alpha 中,这些被称为 card-block,而不是 card-bodybg-faded,而不是 bg-light)

Http://codeply.com/go/rw2d0qxx08

这对我来说效果最好:

<div class="card bg-light p-3">
<p class="mb-0">Some text here</p>
</div>

所有的答案似乎都不适合使用按钮

<div class="card bg-light">
<div class="card-body">
<button type="submit" class="btn btn-primary">
Save
</button>
<a href="/" class="btn btn-secondary">
Cancel
</a>
</div>
</div>

我把我的类为类警报做得很好,对我来说,它看起来越来越好,但有时需要一些调整,以使宽度100%

<div class="alert alert-light" style="width:100%;">
<strong>Heads up!</strong> This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.
</div>

卡片似乎被“丢弃”了 LOL,我发现“ well”不能与 bootstrap 4.3.1和 jQuery v3.4.1一起工作,只能与 bootstrap 4.3.1和 jQuery V3.3.1一起工作。希望能有帮助。

当然 官方版本说这些卡片是自举井的新替代品。但是现在卡片是一个非常广泛的 Bootstrap 组件。简单地说,您也可以使用 超大屏幕

寻找一行选项:

    <div class="jumbotron bg-dark"> got a team? </div>

Https://getbootstrap.com/docs/4.0/components/jumbotron/