css规则在iOS9上无法正常工作

时间:2015-09-21 11:28:59

标签: css ios9

我对iOS9有关于网站的CSS的问题。 css规则在android和iOS8上运行良好。但在iOS9上,网站搞砸了。这是ios8和ios9的区别。

enter image description here

可能出现的问题是什么?我该如何解决这个问题?感谢帮助。

的CSS:

section.destinations {
    float: left;
    width: 82.5%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1.25em;
}
.content-wrap {
    position: relative;
    border-radius: 5px;
}
.content-wrap section {
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    display: block;
}
.destinations .promo {
    position: relative;
    background: #fff;
    webkit-box-shadow: 0 0 2px rgba(0,0,0,1);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,1);
    box-shadow: 0 0 2px rgba(0,0,0,1);
    float: left;
    width: 23%;
    margin: 0 2.6% 20px 0;
    font-size: 10px;
    text-align: left;
    display: block;
}
@media screen and (max-width: 600px){
    section.destinations {
        width: 100%;
    }
}
@media screen and (max-width: 410px){
    .full .one-fourth {
        width: 100%!important;
        margin: 0 auto 15px!important;
     }
}

HTML:

<section class="destinations clearfix full tabs tabs-style-tzoid">
    <div class="content-wrap">
        <section id="section-tzoid-1" class="content-current">
           <!--column-->
            <article class="one-fourth promo" style="">

            </article>
            <!--//column-->
           <!--column-->
            <article class="one-fourth promo" style="">

            </article>
            <!--//column-->
            <div class="clearfix"></div>
        </section>
    </div>
</section>

1 个答案:

答案 0 :(得分:2)

你在网络环境中偶然发现了IOS9的一个主要问题。 IOS9不尊重任何媒体查询。

如果您的课程存在于特定屏幕尺寸的媒体查询中,则不会读取它们的css,您的输出在所有设备上看起来与IOS9中的相同。该问题已被报道,但苹果目前尚未发布更新版本的时间表来解决此问题。

在我的网站上,香港专业教育学院在显示屏上发布了一个警告:无;使用小于1920 px类的媒体查询,只能在ios9设备上显示,直到问题得到解决。

/* Device Alert (all screen, < 1920px only)*/
@media screen and (max-width: 1920px) {

<style>
.alert {
display:none;
}
</style>
}

<div class="alert">
IOS9 has caused display issues with this site. Please access the site on another platform until an update is issued.
</div>

基本上,如果媒体查询被排除,则显示:none;。如果未排除媒体查询,则显示警报。

希望现在有所帮助。