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 回答