为什么我的div的高度比身体更高?

时间:2012-07-08 01:49:14

标签: css layout html css-float

这是基于Blankslate的Wordpress主题的style.css(我没有更改PHP。我刚开始使用CSS)。

我突出显示了元素的边框,使它们可见......并且所有内容都溢出body边框。这是CSS的全部内容:

/* = CSS Reset 
-------------------------------------------------- */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{font-size:100%;font:inherit;padding:0;border:0;margin:0;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}


/* =Highlight
highlight the basic structural elements of the site
-------------------------------------------------- */

body {border: thin solid red;}

#sidebar {border: thin solid blue;}
#content {border: thin solid green;}

/* =Structure
-------------------------------------------------- */

body {
    width: 1000px;
    float: center;
    margin: auto;
}

#sidebar {
    width: 300px;
    float: right;
}
#content {
    width: 500px;
    float: left;
}

3 个答案:

答案 0 :(得分:2)

在你的花车周围添加一个overflow:hidden的容器(出于某种原因,这似乎并不像我认为的那样直接在body上工作)。请参阅demo

并删除float:center,没有这样的浮动值。要使body水平居中(或任何其他具有宽度的块),您的margin: auto就足够了。

答案 1 :(得分:0)

尝试:

body {
  clear: both;
}

或在身体的末尾附加一个div,清楚:两个css

类似

<body>
  <div id='sidebar'></div>
  <div id='content'></div>
  <div class='clear'></div>
</body>

和css

.clear {
  clear: both;
}

问题是你是浮动身体标签的所有内容

答案 2 :(得分:0)

我让我的一个工作,将身体和html设置为溢出隐藏&amp;在身体上添加一些底部填充物:

html {
overflow: hidden;
}

body {
overflow: hidden;
padding-bottom: 2%;
}