用引导响应图像约束图像高度?

时间:2013-10-31 14:19:36

标签: html css twitter-bootstrap

使用bootstrap在站点上工作,在项目组合部分中,项目图像响应:

'class' => 'img-responsive'

它适用于风景图像,肖像图像被吹得很宽,但是太高了,有没有办法检查纵向图像并且只为它应用600px的固定高度?

1 个答案:

答案 0 :(得分:43)

如果容器应该有一个固定的高度,那么给它一个ID(或类)并以相反的方式改变.img响应限制,例如

.container {
height: 600px;
}


/*And then change */
  .container .img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}  
/*To */

.container  .img-responsive {
    display: block;
    width: auto;
    max-height: 100%;
}

不知道如何使用混合方向,但如果它们浮动它真的不重要