簡體   English   中英

iPhone 5橫向媒體查詢不起作用

[英]iphone 5 landscape media query not working

下面的媒體查詢不起作用。 我已經在slider.php頁面中編寫了此媒體查詢,並將其包含在index.php頁面中。

  //For iphone 5
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) 
{ 
    #mainslider
    {
        margin-bottom: 48px !important;
    }
}
<div id="mainslider" style="width:95%;margin:auto;height:150px;">
</div>

我知道了。 我僅將主滑塊的高度更改為高度:自動,而不是底邊。 現在正在工作。

<div id="mainslider" style="width:95%;margin:auto;height:auto;">
</div>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM