CSS将菜单与内容内联

时间:2013-11-29 09:46:20

标签: css

所以我有这个菜单,不管我做什么都不想内容。 这里有一些图片,它现在是如何(之前)以及我希望它如何(之后)。

http://s24.postimg.org/nqv765rhx/image.jpg http://s27.postimg.org/7jikbzrqr/image.jpg

这是代码:

#the website format{
    width:1000px;
    margin: 0 auto;
    height:100%;
    text-align:left;
}
#menu {
    width:200px;
    float:left;
    padding-left:10px;
}
#wrapper{
    width:1000px;
    padding-left:10px;
    padding-right:10px;
    float:left;
}
#content {
    float: left;
    width: 800px;
    padding: 0px;
}
.inside {
    width: 220px;
    height: 350px;
    padding: 5px;
    float:right;
    display:inline-block;
    margin:5px;
}

1 个答案:

答案 0 :(得分:0)

看看here,这是你想要的样子吗?

HTML

<div class='table'>
    <div class='cell'>Menu</div>
    <div class='cell'>Content</div>    
</div>

CSS

body, html{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}
body{
    position:fixed;
}
.table{
    display:table;
    height:100%;
    width:100%;
}
.cell{
    display:table-cell;
    border:1px solid grey;
}
.cell:first-child{
    width:100px;
}