响应式菜单媒体查询

时间:2015-01-05 19:20:55

标签: css html5 drop-down-menu

我真的很难制作移动菜单。

当宽度<&lt; 500 px,我希望菜单崩溃,只需一个按钮

任何人都可以帮我解决这些问题吗?当我尝试

时,我真的弄得一团糟

可以在此处找到该网站的链接。 http://www.lync-star.com/home.html

css可以在下面找到:

body {
    font-size: 62.5%;
    /* set the base font to 10px */
}
#header {
    /* section width 100 (0 BM) + clearfix */
    width: 100%;
    min-width: 430px;
    z-index: 20;
    background-color: #000;
}
#wrapper {
    margin: 2em auto;
}
#logocontainer {
    padding: 1em 0;
}
ul {
    /* start Nav */
    height: auto;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}
ul li {
    display: inline;
}
ul a {
    text-decoration: none;
    color: #FFF;
}
ul a:hover {
    text-decoration: none;
    color: #00ADF2;
}
@media screen and (min-width: 320px) {
    #wrapper {
        border: 4px solid #000;
        height: 600px;
    }
    #logo {
        height: 7em;
    }
    ul {
        /* start Nav */
        margin: 0.5em 0 0 0;
        background-color: #007272;
        font: 1.5em'Oswald', sans-serif;
        min-width: 420px;
    }
    ul li {
        padding: 0 1.6em;
        vertical-align: middle;
    }
    ul a {
        color: #FFF;
    }
    ul a:hover {
        color: #CCC;
    }
    @media screen and (min-width: 580px) {
        /* MEDIUM ipad size*/
        #header {
            height: 17.5em;
        }
        ul {
            /* start Nav */
            background: url(images/bgnav1.gif);
        }
        ul li {
            padding: 0 1.3em;
            text-align: left
        }
    }

非常感谢, P

3 个答案:

答案 0 :(得分:0)

将媒体查询从最小宽度更改为最大宽度。目前,你的最小宽度:320px正在覆盖你的其他人。

用于移动

@media screen and (max-width: 320px) {

小的

@media screen and (max-width: 580px) {

然后可能是大的

@media screen and (min-width: 581px) {

答案 1 :(得分:0)

根据要求更改媒体查询,这可能有助于您在横向和纵向视图中设置移动设备的尺寸。

/ *智能手机(人像和风景)----------- * /

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */
}

/ *智能手机(风景)----------- * /

@media only screen and (min-width : 320px) {
/* Styles */
}

/ *智能手机(肖像)----------- * /

@media only screen and (max-width : 320px) {
/* Styles */
}

如需更多参考,您可以访问: http://responsivedesign.is/develop/browser-feature-support/media-queries-for-common-device-breakpoints

答案 2 :(得分:-2)

删除所有评论/ * MEDIUM ipad尺寸* /和