作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!