36

所以我试图在不裁剪任何屏幕尺寸的情况下显示尽可能大的图像。这意味着height: 100%; width: autoinlandscapewidth: 100%; height: autoin portrait

我正在提供足够大的图像以填充视网膜 iPad,因此几乎每个屏幕尺寸都会缩小图像。除了横向模式下的 Internet Explorer 和 Firefox 之外,它在所有浏览器和方向上都能做到这一点,这使得它们对于几乎每个屏幕来说都太大了。请注意,这仅在风景中。

相关的代码位是:

<style type="text/css">

            #container {position:absolute; top:0; left: 0; right: 0; bottom:0; display: block;}

            #content {
              text-align: center;
              margin: 0px;
                font-size:0;
                 position: absolute;
                top:0; left: 0; right: 0; bottom: 0
            }

            #content:before {
              content: '';
              display: inline-block;
              height: 100%; 
              vertical-align: middle;
              margin-right: -0.25em; 
             }

            .sponsor {
              display: inline-block;
              vertical-align: middle;
             }

             #content img {
                max-width: 100%;
                width: 100%;
                height:auto;
            } 
@media all and (orientation: landscape) {
                 #main {        
                    top:0;
                    display: block;  
                    width: 100%;
                    height: 100%;                       
                    margin:0px auto; 
                    text-align:center;
                     }

                    #content img {
                                height:100%;
                                width:auto;
                                max-width:auto !important;
                                max-height:100%;
                                display:block;
                                margin:0 auto;
                }

}
</style>

<div  id="content"> 
 <?php if (has_post_thumbnail( $post->ID ) ): ?>
 <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>              
         <div title="Click to flip" class="sponsor">

                 <a href="#" class="img-link"> 
                        <img src="<?php echo $image[0]; ?>" alt="" class="feat-1" style="display: block;" />
                    </a>

                     <a href="#"> 
                      <img src="<?php echo kd_mfi_get_featured_image_url('featured-image-2', 'post', 'full'); ?>" alt="" class="feat-2" style="display: none;" />
                    </a>

            </div><?php endif; ?>
</div><!-- End div #content -->

我不太在意比 IE9 更早的版本,但理想情况下想为所有内容提供服务。但是,只要我能提供 IE9+ 和 Firefox,我就会很高兴。

哦,顺便说一句 - Firefox 中的 Inspector 告诉我width:100%正在遵守规则,但显然不是。

提前谢谢了!

4

2 回答 2

54

你有max-width: 100%,但100%是什么?父宽度,对吧?但是父级是一个未设置宽度的内联块(class="sponsor"),因此它的宽度取决于子级,尤其是子级的首选宽度。

CSS 规范中未定义此样式的布局。特别是,在这种情况下,孩子的内在宽度取决于父母的宽度,而父母的宽度又取决于孩子的内在宽度。有关相关规范文本,请参阅http://www.w3.org/TR/CSS21/visudet.html#shrink-to-fit-float并注意所有“未定义”位。

我建议给你<div class="sponsor">一个宽度。我认为这应该解决问题。

于 2013-01-29T07:57:29.927 回答
16

我的修复是双重的。当没有其他建议时,它起作用了。它仅使用 FF 定位、较旧的width: 100%修复程序和一个额外的实验属性。

为了让它工作,我做了以下工作:

@-moz-document url-prefix() {
    /* Firefox doesn't respect max-width in certain situations */
    img { width: 100%; max-width: -moz-max-content; }
}

灵丹妙药是实验-moz-max-content值。结合width: 100%,它使 FF 的行为类似于 Safari/Chrome 的max-width: 100%;设置。

我从以下来源发现了这一点:

http://ss64.com/css/max-width.html

于 2015-11-18T22:39:55.100 回答