6

我有一些列表项设置为min-height: 12em- 用于桌面

在为平板电脑/手机屏幕缩小尺寸时,我想将其重置为:min-height: auto

然而 iPad / iPhone 忽略了这一点并保持 12em

我也设置了height: auto

4

1 回答 1

11

使用以下代码:

/* Desktop */
.listings.default li {
    min-height: 12em;
} 

/* Between Desktop and Tablet */ 
@media only screen and (max-width: 1200px) and (min-width: 768px) { 
    .listings.default li {
        display: list-item;
        min-height: inherit;
    }
}

所以使用inherit而不是auto

我在我的 iPhone 上对此进行了测试,但使用了另一个媒体查询。查看这篇文章以查看标准设备的一些媒体查询。

于 2013-04-23T11:50:23.673 回答