我想用html和css来制作这个网站的副本进行练习 https://www.raidhqgame.com/ 但是我在menuArea div中使用填充时发现了一些问题。
HTML
<header>
<div class="head1">
<div class="logoArea">
<img id="logo" src="https://www.raidhqgame.com/images/RHQ_Logo_680x200.png" alt="RAID_HQ LOGO"/>
</div>
<div class="menuArea">
<a href="#">HOME</a>
<a href="#">FEATURES</a>
<a href="#">VIDEO & SCREENS</a>
<a href="#">REVIEWS</a>
<a href="#">DOWNLOAD</a>
<a href="#">HELP</a>
<a href="#">EPS</a>
</div>
</div>
<div class="background_img">
<img src="https://www.raidhqgame.com/images/RAID_Web_BG_01_1500x800.jpg" alt="" />
</div>
CSS
body{
margin:0;
padding:0;
}
.head1{
height:60px;
background:black;
}
.logoArea{
float:left;
width:40%
}
#logo{
height:40px;
padding:10px 0px 10px 110px;
}
.menuArea{
display:block;
float:right;
width:60%;
}
a:link{
text-decoration:none;
color: green;
font-family: "Poppins",sans-serif;
font-weight:bold;
font-size:12px;
letter-spacing: 1px;
}
问题:当我向menuArea div添加填充时,menuArea会跳转。而且“head1”类和“background_img”类之间也存在差距。
我该如何解决这两个问题?
答案 0 :(得分:1)
我认为你可以通过向head1 div而不是menuArea添加填充来获得所需的效果。
以下是您的更新代码:https://jsfiddle.net/ntb7nt39/
<强> CSS 强>
.head1{
height:60px;
background:black;
padding: 20px; // You should change this value to whatever you want
}
&#39; 并且&#34; head1&#34;之间存在差距。 class和&#34; background_img&#34; 。类&#39;我无法重现这一差距。
<强>更新强>
&#39;我想为菜单部分添加填充。不是整个头部。&#39;
我更新了代码:https://jsfiddle.net/ntb7nt39/1/
<强> CSS 强>
.head1{
height: 80px; // Increased height to make space for the navigation bar
background:black;
}
.menuArea{
display:block;
float:right;
width:60%;
padding: 20px 0; // Added padding at the top and bottom of the navigation bar, change these values according to your needs.
}
答案 1 :(得分:1)
并且对于第二个问题,添加高度:100%到logoArea类。