gpt4 book ai didi

html - margin 问题。不能在两个元素之间留出边距。对绝对/相对定位的误解

转载 作者:行者123 更新时间:2023-11-28 02:30:01 25 4
gpt4 key购买 nike

我在相对和绝对定位方面有问题。下面我有一个带有 css 悬停效果示例的代码。有两张图片(在一个 div 中)。接下来我想添加另一个带有文本的 div。当我试图写类似“.wtf {margin:300px}”的 smth 时,整个事情都坏了 ))) 我不明白如何修复它。例如,当我为第二部分添加边距时:.wtf {margin-top: 100px;},我想在第二部分“.wtf”和第一部分“.photo-line”之间留出 100px 的空间。取而代之的是,我从页面的最上方获得 100px 的边距,而不是在部分之间

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style>

body {
margin: 0;
font-family: "Source Sans Pro", Helvetica, sans-serif;
width: 1440px;
}
.t2 {
position: absolute;
top: 120px;
left: 80px;
color: white;
font-weight: 600;
z-index: 1;
}

.img-overlay {
width: 100%;
height: 100%;
background: #6fc3df;
opacity: 0.75;
}
.pic-one {
background-size: cover;
background: blue;
height: 409px;
position: relative;
width: 576px;
}
.pic-one:hover:after {
content: ' ';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background:blue
}
.pic-two {
background-size: cover;
background-color: red;
height: 409px;
width: 864px;
position: relative;
}
.pic-two:hover:after {
content: ' ';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color:red;
}
.img-overlay-two {
width: 100%;
height: 100%;
background: #8d82c4;;
opacity: 0.75;
}
.some {
width: 1440px;
color: white;
background-color: #2e3450;
}
.some h3, .some p {
margin: 0;
}
.wtf {

}
</style>
<body>
<section class="photo-line">
<div class="first-part" style="width:1440px">
<div style="float: left" class="pic-one">
<div class="img-overlay">
</div>
<div class="t2">
<h3 style="width: 240px">Aliquam</h3>
<p>ipsum dolor sit amet</p>
</div>
</div>
<div class="second-part">
<div style="float: right" class="pic-two">
<div class="img-overlay-two"></div>
<div class="t2">
<h3 style="width: 240px">Tempus</h3>
<p>feugiat amet tempus</p>
</div>
</div>
</div>
</div>
</section>
<section class="wtf">
<div class="some">
<h3>Massa libero</h3>
<p>Nullam et orci eu l</p>
</div>
</section>
</body>
</html>

最佳答案

问题是您的第一部分没有任何高度,而第二部分占据了整个页面。尝试将以下样式添加到您的代码中:

.photo-line {
overflow: auto;
}
.wtf {
margin-top: 100px;
}

关于html - margin 问题。不能在两个元素之间留出边距。对绝对/相对定位的误解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47744782/

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