gpt4 book ai didi

css - 调整窗口大小时如何摆脱浏览器窗口右侧的空白区域?

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:18 24 4
gpt4 key购买 nike

我已经在 StackOverflow 上搜索了答案,但我尝试过的都没有奏效。

我有一个容器 div,其中三个内部 div 以不同的高度垂直堆叠。当我的浏览器窗口最大化时,它看起来很好。当我缩小窗口并水平向右滚动时,会出现一段空白区域。我怎样才能摆脱它?提前谢谢大家!

body {
min-width: 100%;
}

div#outer {
display: block;
position: absolute;
min-width: 100%;
}

div#top {
left: 0;
top: 0;
height: 100px;
width: 100%;
position: relative;
display: block;
}

div#middle {
left: 0;
top: 0;
height: 600px;
width: 100%;
position: relative;
display: block;
}

div#bottom {
left: 0;
top: 0;
height: auto;
width: 100%;
position: relative;
display: block;
}

HTML:

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="big">
<div id="top">
</div>

<div id="middle">
</div>

<div id="bottom">
</div>
</div>
</body>

最佳答案

body 中,有一些默认边距。您可以像这样删除所有内容:

body {
min-width: 100%;
margin: 0;
padding: 0;
}

如果您只想删除边距:

body {
min-width: 100%;
margin-left: 0;
margin-right: 0;
}

这样行吗?

关于css - 调整窗口大小时如何摆脱浏览器窗口右侧的空白区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14248567/

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