gpt4 book ai didi

css - 使用边距时如何使 div 的高度适应文本......?

转载 作者:行者123 更新时间:2023-11-28 02:55:18 24 4
gpt4 key购买 nike

我试图通过简单地定义 min-height css 属性来将 div 框的高度调整为文本高度。但是,这不起作用。 div 似乎总是遵循边距定义,并且不会调整到文本高度。谁能帮忙?

<!DOCTYPE html>
<html>
<head>
<style type="text/css" >
body {
margin:0;
}
.parallax-group {
position:relative;
height:100vh;
}
.sectiontext {
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
content: "";
margin-bottom:20%;
margin-top:15%;
margin-left:0px;
min-height: 1px;
box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}
</style>
</head>
<body>
<section class = "parallax-group">
<div class = "sectiontext ">
blablablablablablablablablablablablablablabla
</div>
</section>
</body>
</html>

最佳答案

解决方案非常简单:必须删除“bottom:0”约束:

<!DOCTYPE html>
<html>
<head>
<style type="text/css" >
body {
margin:0;
}
.parallax-group {
position:relative;
height:100vh;
}
.sectiontext {
position:absolute;
left:0;
right:0;
top:0;
content: "";
margin-bottom:20%;
margin-top:15%;
margin-left:0px;
min-height: 1px;
box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}
</style>
</head>
<body>
<section class = "parallax-group">
<div class = "sectiontext ">
blablablablablablablablablablablablablablabla
</div>
</section>
</body>
</html>

关于css - 使用边距时如何使 div 的高度适应文本......?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37379715/

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