gpt4 book ai didi

html - CSS 页面布局 - div 在调整大小时移动

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

我正在尝试找出使用 CSS 布置此页面的正确方法,但遇到了一些麻烦。 html 看起来像:

body {
background-color: orange;
}

header {
display: block;
text-align: right;
width: 100%;
height: 50px;
}

.mainWrapper {
width: 100%;
}

nav {
border: 1px solid black;
float: left;
padding-top: 20px;
width: 20%;
}

nav ul li {
width: 100%;
text-align: center;
margin-bottom: 10px;
list-style-type: none;
height: 75px;
border: 1px solid black;
}

content {
float: right;
width: 65%;
padding: 100px;
background-color: white;
border-radius: 10px;
border: 1px solid black;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</style>
</head>
<body>
<header>Title</header>
<div class="mainWrapper">
<nav>
<ul>
<li>Link 1</li>
<li>Link 2</li>
<li>Link 3</li>
<li>Link 4</li>
</ul>
</nav>
<content>blah blah blah</content>
</div>
</body>
</html>

我的目标是在顶部设置一个 100% 宽度的标题。在左边的下方是一个 20% 宽的导航菜单向左浮动。然后紧靠该导航右侧的是占据页面剩余宽度的主要内容区域。

问题在于,当浏览器窗口变小时,主要内容区域会转移到导航菜单下方。这样做很奇怪,因为我认为内容区域会自行调整大小,因为它设置为 % 宽度。

此外,确保导航菜单和内容区域垂直占据浏览器其余空间的最佳方法是什么?我尝试在它们上设置 height:100% (在将 body 高度也设置为 100% 之后),但它只延伸到页面底部一点点并强制显示滚动条

最佳答案

问题出在 content 上的 padding:100px。这会向元素的宽度添加一个固定的 200px 组件。如果您想保留填充,请将元素宽度更改为 width: calc(65% - 200px); 虽然填充很多。您最好使用媒体查询调整填充。

body {
background-color: orange;
}

header {
display: block;
text-align: right;
width: 100%;
height: 50px;
}

.mainWrapper {
width: 100%;
}

nav {
border: 1px solid black;
float: left;
padding-top: 20px;
width: 20%;
}

nav ul li {
width: 100%;
text-align: center;
margin-bottom: 10px;
list-style-type: none;
height: 75px;
border: 1px solid black;
}

content {
float: right;
width: calc(65% - 200px);
padding: 100px;
background-color: white;
border-radius: 10px;
border: 1px solid black;
}
<body>
<header>Title</header>
<div class="mainWrapper">
<nav>
<ul>
<li>Link 1</li>
<li>Link 2</li>
<li>Link 3</li>
<li>Link 4</li>
</ul>
</nav>
<content>blah blah blah</content>
</div>

关于html - CSS 页面布局 - div 在调整大小时移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28778066/

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