gpt4 book ai didi

css - .well 类中的垂直居中 Bootstrap btn

转载 作者:技术小花猫 更新时间:2023-10-29 11:32:04 25 4
gpt4 key购买 nike

我有一个链接,我想在 Bootstrap 框架的 .well 类中垂直居中,并在 anchor 标记上使用类 btn btn-danger。这是下面的图片。我尝试使用 vertical-align:middle; 但这似乎不起作用。你可以看到井上的空间甚至不在顶部和底部。

enter image description here

这是 HTML:

<div class="well">
<%= link_to "Remove", thing, method: :delete, style: "font-size: 11px; float:right; ", :class => 'btn btn-danger'%>

</div>

最佳答案

看来您不应该(或根本不能)垂直对齐 float 元素。

这是我的建议:

<div class="well mywell">
<div class="pull-right myfloater">
<button class="btn btn-danger vcenter">Remove</button>
</div>
<p><!-- things --></p>
</div>
.mywell{
height: 150px;
}
.myfloater {
line-height: 150px;
}
.vcenter{
vertical-align: middle;
}

实例:http://jsfiddle.net/Sherbrow/wxM5Z/2/

编辑

line-height 应用于 float 元素会更好。

关于css - .well 类中的垂直居中 Bootstrap btn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11184868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com