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メニュー項目に固定があります。つまり、常に同じサイズのままです。1 つの行に十分なスペースがない場合、次の行に分割されます。

于 2013-07-11T15:54:12.883 に答える