0

图像
(来源:gyazo.com

如果我将调整我的屏幕大小或在一个小电脑屏幕上运行,就会发生这种情况。

这就是它应该的样子(我的桌面屏幕上的 100% 大小):

img2
(来源:gyazo.com

为什么会这样?可能需要自动检查宽度并使用百分比代替?我不知道..

这是我的代码。

HTML:

    <div id="menu">
        <ul id="menuitems">
            <li id="menu-active"><a href="#" >HOMEPAGE</a></li></a>
            <li><a href="#">PLAY NOW</a></li>
            <li><a href="#">COMMUNITY</a></li>
            <li><a href="#">HUNGER WIKI</a></li>
            <li><a href="#">HIGHSCORES</a></li>
            <li><a href="#">HELP</a></li>
            <li><div id="login"></div></li>
        </ul>
    </div>

CSS:

body {
    background-color: #1e1e1e;
    /*background-image: url("../img/background.png");*/
    background-repeat: no-repeat;
    background-position: center top;
    color: #fff;
    font-size: 14px;
}

#logo {
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    width: 465px;
    height: 126px;
    margin-left: 24%;
    margin-top: 3%;
}

#menu { 
    background-image: url("../img/gradient-header.png");
    background-repeat: repeat;
    width: 100%;
    height: 56px;
    border: solid 1px #000;
    font-weight: bold;
}

#menuitems {
padding: 0;
margin: 0;
float: left;
}

#menuitems li {
    background-image: url("../img/gradient-header.png");
    background-repeat: repeat;  
    display: inline-block;
    width: 140px;
    height: 56px;
    background-color: white;
    float: left;
    border-right: solid 1px #44acbf;
    border-left: solid 1px #114a56;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;      
}

#menuitems li:hover {
    background-image: url("../img/gradient-1.png");
    background-repeat: repeat;  
    border-right: solid 1px #2b6e81;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;  
}

#menuitems li:active {
    background-image: url("../img/gradient-onClick-menu.png");
    background-repeat: repeat;  
}

#menuitems li:last-child {
    width: 88px;
    border-right: solid 0px transparent;
}

#menu-active {
    background-image: url("../img/gradient-1.png") !important;
    background-repeat: repeat !important;   
    border-right: solid 1px #2b6e81 !important;
}

#menuitems li:first-child {
    border-left: solid 0px transparent;
}

#login {
    background-image: url("../img/icon.png");
    background-repeat: no-repeat;
    margin-left: 32%;   
    margin-top: 20%;    
    width: 25px;
    height: 21px;
}

#menuitems a {
    width: 140px;
    height: 56px;
    color: #fff;
}

我正在使用.container引导框架作为容器。

4

1 回答 1

0

你有一个固定width的菜单项。这意味着它们始终保持相同的大小,如果一行上没有足够的空间容纳它们,它们将拆分到下一行

于 2013-07-11T15:54:12.883 回答