gpt4 book ai didi

jquery - 如何在 Bootstrap 缩略图类中修复特定媒体屏幕的图像大小?

转载 作者:行者123 更新时间:2023-11-28 05:48:40 25 4
gpt4 key购买 nike

在 bootstrap 3 中,图像的高度和宽度应该针对不同的媒体屏幕是固定的。

注意:图像在 Bootstrap 的缩略图类中

示例:

<div class="thumbnail>
<img />
</div>

我把css样式写成..

@media screen and (min-width: 970px)

{
.thumbnail {
width: 291px !important;
}

.cardViewImage{
height: 167px !important;
width: 291px !important;
}
}

@media only screen and (min-width: 1170px)
{
.thumbnail{
width: 356px !important;
}
.cardViewImage{
height: 204px !important;
width: 356px !important;
}
}

由于 Bootstrap 的缩略图类无法为差异媒体屏幕修复图像大小。宽度根据媒体屏幕而变化,我希望对于特定媒体屏幕保持不变。

最佳答案

您希望图像具有固定宽度吗?

@media screen and (min-width: 970px)

{
.thumbnail img{
width: 291px !important;
}

.cardViewImage{
height: 167px !important;
width: 291px !important;
}
}

@media only screen and (min-width: 1170px)
{
.thumbnail img{
width: 356px !important;
}
.cardViewImage{
height: 204px !important;
width: 356px !important;
}
}

关于jquery - 如何在 Bootstrap 缩略图类中修复特定媒体屏幕的图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37464523/

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