页面布局未显示正确的结果

时间:2013-10-27 15:40:19

标签: html css

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

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

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

#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;
}

in 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>

请看如何获得合适的布局。

1 个答案:

答案 0 :(得分:4)

希望这会有所帮助。请检查我刚创建的小提琴。这是你在想什么?

您可能需要在css中查看以下概念 - Positioning

Fiddle: Demo

position: inherit;

float: left;