0
我剛剛發現,在IE 8我的文章縮略圖顯示僅作爲細條紋 - 你可以在圖像看到:CSS:圖像尺寸僅爲5%,它們在IE寬度8
的web:http://jdem.cz/vzcy9
此行爲不存在於任何其他瀏覽器 - 即FF 14,Opera 11,Chrome X,IE 7,IE 9都可以。
你有什麼想法是什麼導致這在IE8中?
我剛剛發現,在IE 8我的文章縮略圖顯示僅作爲細條紋 - 你可以在圖像看到:CSS:圖像尺寸僅爲5%,它們在IE寬度8
的web:http://jdem.cz/vzcy9
此行爲不存在於任何其他瀏覽器 - 即FF 14,Opera 11,Chrome X,IE 7,IE 9都可以。
你有什麼想法是什麼導致這在IE8中?
似乎max-wdth:99.35%
規則是這樣做的。嘗試將width:auto
添加到設置分數最大寬度的相同規則中。
換句話說,變革:
#masthead img, #featured-content img, #recent-content img, .entry-content img, .entry-thumb img, .comment-content img, .widget img {
background: #fff;
border: 1px solid #bbb;
max-width: 99.35%;
/* Fluid images for posts, comments, and widgets */
padding: 1px;
}
到
#masthead img, #featured-content img, #recent-content img, .entry-content img, .entry-thumb img, .comment-content img, .widget img {
background: #fff;
border: 1px solid #bbb;
max-width: 99.35%;
width:auto;
/* Fluid images for posts, comments, and widgets */
padding: 1px;
}
那麼到底它是如此簡單。我還想着要複雜得多的問題與浮動。謝謝@ j08691 –