为什么Safari的CSS定位会在较小的屏幕宽度上中断

时间:2015-05-14 23:08:14

标签: html css safari

在我的网站www.azletconsulting.com上,当网站低于950px safari时,会破坏Register to Vote,Join the Campaign etc菜单定位的定位。在较大的尺寸下,一切都正确对齐,但一旦它下降到一个较小的CSS媒体查询,菜单按钮就会打破对齐。所有媒体查询的代码都相同,我在Chrome / Firefox中没有任何问题。

.main_footer_menu {
    left: 0;
    bottom: 0;
    top: 319px;
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: rgba(93, 93, 93, 1);
    z-index: 10;
    box-sizing: border-box;
}

ul#menu-bottom-menu {
    margin: 0;
    padding: 0;
    height: 80px;
}

li#menu-item-28 a {
    left: -200px;
    position: relative;
    display: inline-block;
    width: 200px;
    height: 80.5px;
    background-image: url("images/buttons/medium/rov.png");
    background-size: 200px 80.5px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -99999999px;
    overflow: hidden;
}

li#menu-item-29 a {
    top: -90px;
    position: relative;
    display: inline-block;
    width: 200px;
    height: 80.5px;
    background-image: url("images/buttons/medium/join.png");
    background-size: 200px 80.5px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -99999999px;
    overflow: hidden;
}

li#menu-item-30 a {
    top: -175px;
    left: 200px;
    position: relative;
    display: inline-block;
    width: 200px;
    height: 80.5px;
    background-image: url("images/buttons/medium/contribute.png");
    background-size: 200px 80.5px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -99999999px;
    overflow: hidden
}

1 个答案:

答案 0 :(得分:0)

试试这个:

.main_footer_menu {
    left: 0;
    bottom: 0;
    top: 319px;
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: rgba(93, 93, 93, 1);
    z-index: 10;
    box-sizing: border-box;
}

    ul#menu-bottom-menu {
        margin: 0;
        padding: 0;
        height: 80px;
    }

    li#menu-item-28, li#menu-item-29, li#menu-item-30 {
        display: inline-block;
    }

        li#menu-item-28 a, li#menu-item-29 a, li#menu-item-30 a {
            display: inline-block;
            width: 200px;
            height: 80.5px;
            background-size: 200px 80.5px;
            background-repeat: no-repeat;
            background-position: center;
            text-indent: -99999999px;
            overflow: hidden;
        }

        li#menu-item-28 a {
            background-image: url("images/buttons/medium/rov.png");
        }


        li#menu-item-29 a {
            background-image: url("images/buttons/medium/join.png");
        }

        li#menu-item-30 a {
            background-image: url("images/buttons/medium/contribute.png");
        }