17

我正在使用 Bootstrap 3 框架,并且在 Firefox 中的“img-responsive”类遇到了一些问题。我有一个 4 列的表格,布局为 15/50/10/25%。第一列是一张大图,应该缩小到 15%。但这仅适用于 Chrome/Opera,但不适用于 FF/IE(图像没有响应,因此太大)。

我的代码:

<table class="table table-striped table-condensed voc_list ">

<thead>
<tr>
<th style="width:15%;"></th>
<th style="width:50%;">Bezeichnung</th>
<th style="width:10%;">Zeitraum</th>
<th style="width:25%;">Ort</th>
</tr>
</thead>

<tbody>

<tr class="listview">
<td style="padding:15px 0px 15px 0px;"> 
<a href="xy" title="">
<img src="yx.jpg" class="img-responsive voc_list_preview_img" alt="" title=""></a>
</td>

<td style="width: 50%; padding:15px 15px 15px 15px;">
<a href="xy" title="">
<h3 class="nomargin_top">ABC</h3>
</a>
</td>

<td style="width:10%;">
555
</td>

<td>
XYZ
</td>

</tbody>

</table>

这是 BS3 中的一个已知问题吗?我什么也找不到。

编辑: http: //jsfiddle.net/cctyb/ - 在 Chrome 中它可以工作,在 FF 中图像太大

4

5 回答 5

22

添加.img-responsive{width:100%;}到您的 css,另请参阅:为什么 Firefox 和 Opera 忽略 display: table-cell 内的 max-width?

于 2013-09-17T20:11:15.533 回答
16

我也有这个问题,我的解决方案是“table-layout fixed”

.table-container {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}
.table-cell-container {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
    &.center{
        text-align: center;
    }
    img{
        display: inline-block;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%;

    }
}

<div class="table-container">
<div class="table-cell-container center">
         <img src="myimage.jpg" width="100" height="100" alt="myimage" />
</div>
</div>
于 2014-02-14T08:50:36.720 回答
3

巴斯的回答

.img-responsive {
   width:100%;
}

确实有效,但它也可以放大其他图像。

我所做的是创建另一个类

.img-responsive-2 { 
   width: 100%; 
}

并将其与原件放在一起,.img-responsive以便我可以灵活地将其仅用于表格中的图像。

<img src="someimage.jpg" class="img-responsive img-responsive-2" />
于 2015-02-13T21:28:04.487 回答
0

试试这个代码

$(window).load(function() {
    $('img.img-responsive').each(function(){
        // Remember image size
        var imgWidth = $(this).width();
        // hide image 
        $(this).hide();
        // if container width < image width, we add width:100% for image 
        if ( $(this).parent().width() < imgWidth ) { $(this).css('width', '100%'); }
        // show image
        $(this).show();
    });
});
于 2014-05-17T19:26:28.850 回答
-2

我的自定义CSS:

table .img-responsive {
    width: 100%;
}
于 2015-11-12T08:26:55.877 回答