twitter-bootstrap – Bootstrap .well .pull-right问题

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – Bootstrap .well .pull-right问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些麻烦的bootstraps拉右类。
当我在.well中有一个浮动的元素时,井不会将浮动的元素计入其大小。所以元素(在我的情况下< button>是div的一半。

我敢肯定有一个简单的解决方法

代码如果任何人想知道:

<div class="well">
<h5>TEXT</h5>
<p><img src="img/src.png" class="pull-right" alt=""/>Genere illum vero diam ille sui coniungens in lucem in. Cyrenaeam plus plorantes abscederem assignato ipsum ait mea vero non ait est amet coram me testatur in!</p>
<button class="btn btn-metro pull-right">text</button>
</div>

解决方法

我已经解决了这个问题,通过清除浮动。这很简单,只需将类.clearfix添加到.well。

正如Alexis在评论中所说,div应该是这样的:

<div class="well clearfix">
</div>
原文链接:https://www.f2er.com/bootstrap/234498.html

猜你在找的Bootstrap相关文章