gpt4 book ai didi

html - 如何在此矩形的顶部和底部留出边距

转载 作者:行者123 更新时间:2023-11-28 05:40:17 24 4
gpt4 key购买 nike

我已经创建了一个外部 div 元素,我正在尝试在其中制作一个简单的矩形。现在,第一面的水平定位是正确的。但是,对于垂直定位,我想在 lenght1 div 的顶部、底部和外部 div 之间留出 10px 的边距。下面是我的代码。

<!DOCTYPE html>
<html>
<head>
<style>
*{
margin:0px;
padding:0px;

}
body{
margin:10px 0px;
}
div.outer{
height:400px;
width: 500px;
margin:100px auto;
margin-top: 130px;
background-color:red;
}
div.length1{
height:380px;
width:30px;
margin:10px 470px 10px 0px;
background-color:blue;
}
</style>
</head>
<body>
<div class="outer">
<div class="length1"></div>
<div class="breadth1"></div>
<div class="length2"></div>
<div class="breadth2"></div>
</div>
</body>
</html>

最佳答案

内部 div 的边距折叠,因此没有按预期推。

这里解释的很好:

一种方法是给父级 overflow: auto

*{
margin:0;
padding:0;
}
body{
margin:10px 0;
}
div.outer{
height:180px;
width: 500px;
margin: 0 auto;
background-color:red;
overflow: auto;
}
div.length1{
height: calc(100% - 20px);
width:30px;
margin: 10px 0 10px 10px;
background-color:blue;
}
<div class="outer">
<div class="length1"></div>
<div class="breadth1"></div>
<div class="length2"></div>
<div class="breadth2"></div>
</div>


另一种方法是在父级上使用 padding 而不是在子级上使用 margin

*{
margin:0;
padding:0;
}
body{
margin:10px 0;
}
div.outer{
height:180px;
width: 500px;
margin: 0 auto;
background-color:red;
padding: 10px;
}
div.length1{
height: 100%;
width:30px;
background-color:blue;
}
<div class="outer">
<div class="length1"></div>
<div class="breadth1"></div>
<div class="length2"></div>
<div class="breadth2"></div>
</div>

关于html - 如何在此矩形的顶部和底部留出边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37928650/

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