gpt4 book ai didi

css - 为什么我的 div 的高度比 body 大?

转载 作者:太空宇宙 更新时间:2023-11-04 05:01:42 25 4
gpt4 key购买 nike

这是我的 style.css,用于基于 Blankslate 的 Wordpress 主题(我没有更改任何 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;
}

最佳答案

在您的 float 周围添加一个带有overflow:hidden 的容器(出于某种原因,这似乎并不像我认为的那样直接作用于body)。参见 demo .

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

关于css - 为什么我的 div 的高度比 body 大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11380074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com