gpt4 book ai didi

html - 垂直对齐两个不同高度的右拉元素(Bootstrap)

转载 作者:太空宇宙 更新时间:2023-11-03 23:21:54 24 4
gpt4 key购买 nike

我有两个链接(一个文本和一个图像),我试图将它们向右拉 并使每个链接的底部 垂直对齐。但现在,它看起来像这样:

enter image description here(垂直对齐彼此的顶部)

相关的 HTML:

<div class="col-md-7">
<div class="thumbnail">
<div class="caption clearfix">
<h2>Heading</h2>
<p class="thin">Donut jelly beans muffin cupcake. Oat cake caramels gingerbread cotton candy.</p>
<p class="thin">Chupa chips biscuit jelly chocolate bar danish caramels sugar plum cupcake.</p>
<a href="#" class="pull-right"><img src="http://placehold.it/100x70"></a>
<a href="#" class="pull-right">See example</a>
</div>
</div>
</div>

有谁知道如何垂直对齐每个元素的底部

最佳答案

一种方法是将两个 A 元素放在一个 div 容器中,然后将该 div float 到右侧。从那里,将 A 元素设置为 inline-block 和 vertical align: bottom。这是一个工作示例:http://jsfiddle.net/z26s7nb1/2/

<div class="col-md-7">
<div class="thumbnail">
<div class="caption clearfix">
<h2>Heading</h2>
<p class="thin">Donut jelly beans muffin cupcake. Oat cake caramels gingerbread cotton candy.</p>
<p class="thin">Chupa chips biscuit jelly chocolate bar danish caramels sugar plum cupcake.</p>
<div class="pull-right">
<a href="#">See example</a><a href="#"><img src="http://placehold.it/100x70"></a></div>
</div>
</div>
</div>

还有你的 CSS:

.pull-right
{
float: right;

}
.pull-right a
{
display: inline-block;
vertical-align: bottom;
}

关于html - 垂直对齐两个不同高度的右拉元素(Bootstrap),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28374721/

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