0

我想为我的网站创建一个简单的模板。但它没有显示正确的输出。

我想要页眉,菜单栏,正文(左导航,内容,右导航),页脚。

为此,我正在使用以下代码,但这没有显示所需的输出。

#left-side {
    position: relative;
    width:150px;
    top: 0px;
    left:0px;
    background-color: #FF6666;
}
#right-side {
    width:150px;
    position: relative;
    top: 0px;
    background-color: #00FF66;
    float: right;
}
#container{
    width: 950px;
    margin: 0 0 0 150px; 
    padding: 0;

}
#header {
    position: relative;
    width:100%;
    height:100px;
    top: 0px;
    background-color:#9eb9c2 ;
}
#menu-bar{
    width:100%;
    height: 20px;
    color :red;
}
#middle{
    position: relative;
    width:100%;
    min-height:100px;
    top: 0px;
    background-color: #555555;
}
#footer {
    position: relative;
    height: 60px;
    width: 100%;
    clear: both;
    background-color: blue;
}

在 HTML 中

<div id="container">
        <div id="header">
        </div>
        <div id="menu-bar">
        </div>          

        <div id="middle">    
            <div id="left-side">
                <h3>side1</h3>    
                <ul>    
                    <li>Let me say hello</li>    
                </ul>    
            </div>

            <div id="middle-content">    
                <h2>main content</h2>    
               <p>Hwllo</p>    
            </div>

            <div id="right-side">    
                <h3>side2</h3>    
                <ul>    
                    <li>Hiii</li>    
                </ul>    
            </div>    
        </div>

        <div id="footer">    
            <h3>footer</h3>    
        </div>
    </div>

请参阅如何获得正确的布局。

4

1 回答 1

4

希望这可以帮助。请检查我刚刚创建的小提琴。这就是你的想法吗?

您可能需要查看一下 css 中的以下概念 - 定位

小提琴:演示

position: inherit;

float: left;
于 2013-10-27T16:22:08.123 回答