我的圖像在Chrome和Firefox中看起來顯示不同。爲什麼Firefox和Chrome顯示不同的圖像?
這裏是一個小提琴http://jsfiddle.net/SEOplay/4FGad/2/在firefox和chrome中打開它,你會看到圖像的尺寸是不同的。
Chrome根據需要顯示圖像。
HTML
<div id="imageContent">
<div id="bigImgCon">
<a href="<?php echo $firstImg; ?>" rel="lightbox"><img id="firstImage" rel="lightbox" src="http://placekitten.com/200/400" /></a>
</div>
</div>
CSS
div#imageContent {
width:100%;
text-align:center;
margin:0 auto;
}
div#bigImgCon {
width:100%;
max-height:300px;
overflow:hidden;
position:relative;
margin-top:10px;
background-color:red;
}
img#firstImage {
max-width:100%;
max-height:100%;
cursor:hand;
cursor:pointer;
display:inline-block;
}
這將是很棒的一些截圖的差異。 – Vallentin
@Vallentin點擊提供的jsfiddle鏈接,在Chrome中打開它,然後在Firefox中打開它。 – Matt
@Matt一個好的,獨立的SO問題將包括屏幕截圖。 – admdrew