gpt4 book ai didi

html - Bootstrap 列大小

转载 作者:行者123 更新时间:2023-11-28 03:09:16 25 4
gpt4 key购买 nike

我正在尝试使用 bootstrap 使两个分开​​的列(不在同一行)具有相同的高度,这将是较大元素(图片)的高度。

我的布局如下所示:http://jsfiddle.net/v30u5zjd/

代码:

<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-12 col-sm-height">
<img src="http://www.onlinegamblingbible.com/wp-content/uploads/2014/02/small-Android_logo.png"></img>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="articleRecentTitre">My great title 1</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="articleRecentResume"> Excerpt here gregregfdsxgrezgttretgretregergfdqgregregregvcxgretgertrecdsgf'"t"'</h3>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-12 col-sm-height">
<img src="http://letrainde13h37.fr/wp-content/uploads/authors/jeremie-patonnier.jpg"></img>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="articleRecentTitre">MY great title 2</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="articleRecentResume">description xaxaxaxaxaxaxaxaxacykaxaxaxafoobarxaxaoifherzoighbnfsoidgneorihgoierhgoihrsfoighvoierhgioreghoireh</h3>
</div>
</div>
</div>
</div>

我基本上希望每个包含图片的列都是最大图片的大小,以便文本可以很好地对齐。

我不认为我可以使用不同的行/列布局(将两张图片放在同一行),因为如果调整 View 大小/使用,它会将它们放在正确的位置(连同文本)移动网站。

最佳答案

像这样的东西就可以了。将此 JavaScript 添加到您的页面。

更新 fiddle :http://jsfiddle.net/v30u5zjd/2/

$(document).ready(function () {
var maxHeight = 0;
$("img").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$("img").height(maxHeight);
});

但要小心 - 将图像缩放到大于其原始尺寸可能会产生一些颗粒状图像。

更新——改为检查新的 fiddle 。添加了一些代码以允许图像保持响应。您需要为图片添加 img-responsive 类。

http://jsfiddle.net/v30u5zjd/3/

关于html - Bootstrap 列大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31233187/

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