gpt4 book ai didi

html - 为什么 DIV 容器只显示像素而不显示百分比

转载 作者:太空宇宙 更新时间:2023-11-03 21:35:33 25 4
gpt4 key购买 nike

我只是想用 CSS 设计一个简单的聊天用于学习目的,但我不明白,为什么 2 DIV 容器没有像我希望的那样炫耀。

这是我当前的代码:

<!DOCTYPE HTML>
<html>
<head>
<title>Chat</title>
<meta charset="UTF-8">

<style type="text/css">
* {
font-size: 36px;
}

#messages {
height: 95%;/* Does not work but for example 500px works */
width: 80%;
float: left;
background: grey;
overflow: auto;
}

#users {
height: 95%;/* Does not work but for example 500px works */
width: 20%;
background: dimgrey;
overflow: auto;
}

input {
width: 100%;
height: 5%;
background: lightgrey;
}
</style>

</head>

<body>
<section>
<div id="messages"></div>
<div id="users"></div>
<input type="text">
</section>
</body>

那么为什么它对 px 起作用而对 % 不起作用呢?

最佳答案

当使用百分比表示高度时,高度是相对于 parent 而言的,因此您需要建立一个基线。通常这是通过设置 html 和 body 元素的高度来完成的。在您的情况下,您还需要在该部分进行设置:

html, body, section {
height:100%;
}

jsFiddle example

关于html - 为什么 DIV 容器只显示像素而不显示百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26941575/

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