html – 使所有图像在引导程序中以相同的高度显示

前端之家收集整理的这篇文章主要介绍了html – 使所有图像在引导程序中以相同的高度显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使所有4行图像都具有相同的高度尺寸,我已经尝试使用css来播放宽度和高度但似乎没有任何效果,肖像图像总是比景观图像更高,这里是代码
<div class="container" >
    <div class="jumbotron" style="background: rgba(200,54,0.0);">
        <div class="row">
            <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
                <a href="#"><img class="left-block img-responsive" src="images/genimage.png" width="160" height="160" alt="" /></a>
                <p style="width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; ">One Random Item</p>
                <p>50 €</p>
            </div>
            <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
                <a href="#"><img class="left-block img-responsive" src="images/genimage.png" width="160" height="160" alt="" /></a>
                <p style="width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; ">Another Random Item</p>
                <p>50 €</p>
            </div>
            <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
                <a href="#"><img class="left-block img-responsive" src="images/genimage2.jpg" height="160" width="160" alt="" /></a>
                <p style="width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; ">Another another Random Item</p>
                <p>50 €</p>
            </div>
            <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
                <a href="#"><img class="left-block img-responsive" src="images/genimage.png" width="160" height="160" alt="" /></a>
                <p style="width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; ">Any other Random Item Any other Random Item </p>
                <p>50 €</p>
            </div>
        </div>

这是发生的事情:

这就是我想要的(所有都有相同的高度)

解决方法

您可以取消HTML中的宽度/高度属性,并使用CSS执行此操作.只需明确设置高度,将宽度设置为自动.例如:
.img-responsive {
    width: auto;
    height: 100px;
}

您需要小心,水平留出足够的空间,因为一旦缩放,您将不知道任何这些图像的确切宽度.

原文链接:https://www.f2er.com/html/225260.html

猜你在找的HTML相关文章