简体   繁体   English

图像不适合表格,IE(IE8,IE9)中的td在FF中效果很好

[英]Image not fitting to table, td in IE(IE8,IE9), works well in FF

Could you please help me in fitting an image to the table, td height. 您能否帮助我将图像拟合到桌子上,td高度。 Whenever the table expands, the image seem to maintain its original size and not fit into the table width and height. 只要表格展开,图片就似乎保持其原始大小,而不适合表格的宽度和高度。 The problem is happening in IE8, IE9. 该问题正在IE8,IE9中发生。 It seems to work fine in Firefox. 在Firefox中似乎工作正常。 Please find the html and css below: 请在下面找到html和CSS:

HTML: HTML:

<table cellspacing="0" cellpadding="0" class="special-offer-banner">
        <tbody><tr>
            <td width="100%" height="100%" class="special-offer-image">
                <img width="100%" height="100%" alt="BOGO &amp; more!" src="/wcsstore/BonTon/images/bonton/gateway_bogo_web.jpg">
            </td>
            <td class="special-offer-messages">
                <p class="message-container">
                    <span class="strong spo-offer-msg1">wordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswords</span><br>
                    <span class="spo-offer-msg2">wordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswordswords</span>
                </p>
            </td>
            <td class="more-special-offers">
            </td>
        </tr>
    </tbody>
</table>

CSS: CSS:

.special-offer-banner {
border: 2px solid #333333;
width: 100%;
height: 120px;
margin: 5px 0;
display: table;
table-layout: fixed;
}

.special-offer-banner .special-offer-image {
width: 340px;
}

.special-offer-banner .special-offer-image img {
display: block;
}

In html5 the width and height attributes on an img tag can not be a %. 在html5中,img标签的width和height属性不能为%。 I would try adding a CSS rule to make the width/height of the image 100%. 我会尝试添加CSS规则以使图像的宽度/高度为100%。

.special-offer-banner .special-offer-image img {
   display: block;
   width:100%; 
   height:100%; 
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM