0

YouTube のガイドを試していますが、right_aside 要素と left_aside 要素を画面に表示できません。私は何時間も探していましたが、問題が見つかりません。私は何か見落としてますか?

これは私のHTMLです:

<!DOCTYPE html>
<html lang="en">

    <head>
        <title>my websitebeta</title>
        <meta charset="utf-8">
        <meta name="keywords" content="">
        <meta name="description" content="">
        <link rel="stylesheet" type="text/css" href="indexStyle.css" />
    </head>

    <body>
        <header id="main_header">
            <div id="second_header"></div>
        </header>
        <menu id="main_menu"></menu>
        <div id="main_wrapper">
            <table width="100%" cellpadding="0" cellspacing="0" border="0">
                <tr>
                    <td valign="top" width="180">
                        <aside id="left_aside"></aside>
                    </td>
                    <td>
                        <section id="main_content"></section>
                    </td>
                    <td valign="top" width="180">
                        <aside id="right_aside"></aside>
                    </td>
                </tr>
            </table>
        </div>
        <footer id="main_footer"></footer>
    </body>

</html>

これは私のCSSです:

*{
    padding: 0px;
    margin: 0px;
}
body{
    color:#000;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    background: #FFF;

}
#main_header{
    width:100%;
    height:100px;
    background: #F90;

}
#second_header{
    min-width:960px;
    height:60px;
    padding:20px;
    margin:0px auto 0px;

}
#main_menu{
    width: 100%;
    height: 40px;
    background: #09F;

}

#main_wrapper{
    min-width:1000px;
    margin-top: 0px;
    margin-bottom: 0px;

}
#left_aside{
    width: 180px;
    min-height:700;
    background: #9f0;
}

#main_content{
    margin:0px 20px 0px;
    min-height:700;
}
#right_aside{
    width: 180px;
    min-height:700;
    background: #f00;
}
#main_footer{
    width: 100%;
    height: 50px;
    background: #09F;
    margin: 0px;
}
4

1 に答える 1

2

左右両サイドのpxアフターを忘れているようです。min-height

次のようになります。min-height:700px;

幸運を!

于 2013-08-09T21:11:56.140 に答える