当屏幕最小化时,为什么我的元素重叠



我是编码新手,加入了TOP。学习编码过程的一部分是制作谷歌主页。这很难,但我有所进步。我目前的问题是,当我最小化屏幕时,我会注意到元素重叠。我玩过这个代码,它仍然会发生。

.googlelogo {
display: flex;
padding: 7% 10% 10%;
margin: 10% 40% 30%;
justify-content: center;
}
.about {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 1%;
}
.store {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 6%
}
.gmail {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 82%
}
.images {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 87%
_____________________________________________________________________________

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Google Homepage</title>
</head>
<body>
<div class="googlelogo">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
</div>

<a class="about" href="https://google.com/about">About</a>
<a class="store" href="https://google.com/store">Store</a>
<a class="gmail" href="https://gmail.com">Gmail</a>
<a class="images" href="https://google.com/images">Images</a>
<div class="searchbox">
<input type="text" name="" value="">
<button type="search" name="button">Search</button>
</div>
</body>
</html>

问题我有

因此,我所做的更改是将锚元素标记包装在div中,并将这些div包装在section标记中,然后为section标记提供样式


<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Google Homepage</title>
</head>
<style>
.googlelogo {
display: flex;
padding: 7% 10% 10%;
margin: 10% 40% 30%;
justify-content: center;
}
.about {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 1%;
}
.store {
display: flex;
position: absolute;
bottom: 17%;
height: 80%;
margin-left: 6%
}
/* CHANGES MADE BELOW */
.itemsOnTheTop{
position: absolute;
top:0;
left:0;
right:0;
display: flex;
justify-content: space-between;
align-items: center;
}
/* CHANGES MADE ABOVE */
</style>
<body>
<div class="googlelogo">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
</div>
<!-- CHANGES MADE BELOW -->
<section class="itemsOnTheTop">
<div>
<a class="" href="https://google.com/about">About</a>
<a class="" href="https://google.com/store">Store</a>
</div>



<div>
<a class="" href="https://gmail.com">Gmail</a>
<a class="" href="https://google.com/images">Images</a>
</div>
</section>
<!-- CHANGES MADE ABOVE -->

<div class="searchbox">
<input type="text" name="" value="">
<button type="search" name="button">Search</button>
</div>
</body>
</html>

最新更新