-1

重複の可能性:
ホームページの読み込みが他のすべてのページと異なる

ホームページの幅が 1024 ピクセルなのはなぜですか。その後のすべてのページの幅は 1280 ピクセルですか? 全画面表示でも、このように読み込まれます。どのように、なぜ?

仕様: ブラウザ: ローカル マシンにある Chrome ページ。

root { 
    display: block;
}
#leftcol a{text-decoration: none;}
#leftcol{   
    left: 10%;
    width: 200px;
    height: 100%;
    margin-top: 0px;
    position: absolute;
    opacity:0.6;
    color: white;
    font-size: 2em;
}
#left-placeholder{
    height: 100%;
    width: 10%;
    float: left;
}
#left-pusher{
    height: 100%;
    width: 200px;
    float: left;
}
.left-column-item{
    background: url('images/bgnav.jpg');
    height: 33.334%;
    background-size: 100%;
    opacity:0.6;
    color: white;
}
.left-column-item:hover{
    background: url('images/bgnav.jpg');
    height: 33.334%;
    background-size: 100%;
    opacity: 1;
}
#content{
    text-align: center;
    color: white;
    font-size: 5em;
    height: 100%;
    width: 70%;
    float:left;
}

body{
    background: url('images/background.jpg');
    background-size: 100%;
    margin: 0;
    min-height: 100%;
    width: 100%}
html, body
{
    height: 100%;
}
//html for homepage:

<html>
    <head>
        <title></title>
        <LINK href="styles.css" rel="stylesheet" type="text/css">
        <script type ="text/javascript">

        </script>
    </head>
    <body>
            <div id ="leftcol">
                <a href="content/practice.html"><div class ="left-column-item">Practice!</div></a>
                <a href="content/AboutUs.html"><div class ="left-column-item">About Us!</div></a>
                <a href="content/contactUs.html"><div class ="left-column-item">Contact Us!</div></a>
            </div>
        <div id="left-placeholder"></div>
        <div id ="left-pusher"></div>
        <div id ="content">Math Practice Site<br>Welcome</div>
    </body>
</html>
// the practice page that is not loading correctly

    <!DOCTYPE html>
    <html>
        <head>
            <title></title>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <LINK href="../styles.css" rel="stylesheet" type="text/css">
            <script type ="text/javascript">

            </script>
        </head>
        <body>
                <div id ="leftcol">
                    <a href="practice.html"><div class ="left-column-item">Practice!</div></a>
                    <a href="aboutUs.html"><div class ="left-column-item">About Us!</div></a>
                    <a href="contactUs.html"><div class ="left-column-item">Contact Us!</div></a>
                </div>
            <div id="left-placeholder"></div>
            <div id ="left-pusher"></div>
            <div id ="content">Math Practice Site <br> hello</div>
        </body>
    </html>
4

2 に答える 2

2

あなたの質問を理解するのは難しいです。とにかく、必須の「;」を追加してみてください。CSS ファイルの「body」定義の「width: 100%」の後 (「}」の直前)

于 2012-11-03T18:42:30.467 に答える
0

一見すると、唯一の本当の違いはcssページへの参照だと思います。ページの残りの部分に適切な CSS が適用されているか、それとも CSS が全体的に適用されていないか?

../後者ならフルパスに置き換えてみては?

于 2012-11-03T18:44:56.410 に答える