gpt4 book ai didi

css - HTML 和 CSS div 没有到达浏览器视口(viewport)的顶部

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

问题:( http://i.imgur.com/mU5HBoa.png ) enter image description here

正如您在上图中看到的那样,mainContent float 在浏览器视口(viewport)实际顶部操作的正下方,我无法使其保持在顶部并同时保持居中。

还有一个快速的附带问题,我如何从#contentBox ID 获取#mainContent、.rightContentBorder 和.leftContentBorder 以获取它们的高度

body {
background-image:url(img/CampusDjursland_Tourneyhjemmeside_grafik/RESTEN/BG_pattern.png);
background-repeat:repeat;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

p {
text-align:left;
}

li {
text-align:left;
}

#contentBox {
margin: 1px auto 1px auto;
width:786px;
height:auto;
min-height:700px;
max-height:none;
}

.leftContentBorder {
width:27px;
height:700px;
float:left;
background-image:url(img/CampusDjursland_Tourneyhjemmeside_grafik/RESTEN/Leftside_orangebar1px.png);
background-repeat:repeat-y;
}

.rightContentBorder {
width:27px;
height:700px;
float:right;
background-image:url(img/CampusDjursland_Tourneyhjemmeside_grafik/RESTEN/Rightside_orangebar1px.png);
background-repeat:repeat-y;
}

#mainContent {
margin: 0 auto 0 auto;
width:732px;
height:700px;
background-color:#CCC;
}

HTML

<body>
<div id="contentBox">
<div class="leftContentBorder"></div>
<div class="rightContentBorder"></div>
<div id="mainContent">
test
</div>
</div>
</body>

最佳答案

像这样做一个基本的 css 重置:

* {
margin:0;
padding:0;
}

这会删除所有元素上的默认填充边距。

关于css - HTML 和 CSS div 没有到达浏览器视口(viewport)的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17976142/

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