这是html:
html{
min-height: 100%;
}
body{
min-height: 100%;
}
.header {
background: url("bghero.png") no-repeat;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
font-family: Montserrat;
height: 200%;
width: 100%;
font-size: 70%;
}
#circle{
text-align: center;
position: absolute;
left: 2%;
top: 4%;
}
#big{
text-align: center;
position: absolute;
font-family: Times New Roman;
font-size: 700%;
top: 40%;
color: white;
right: 0%;
width: 100%;
}
#sml{
}
#ham{
text-align: center-right;
position: absolute;
top: 6%;
right:5%;
}
#src{
text-align: center-right;
position: absolute;
top: 5.8%;
right:11%;
}
#menu1{
text-align: center;
color: white;
right: 6%;
position: absolute;
top: 5.3%;
width: 100%;
margin: 0%;
}
#menu2{
text-align: center;
color: white;
right: 0%;
top: 5.3%;
width: 100%;
margin: 0%;
position: absolute;
}
#menu3{
text-align: center;
color: white;
position: absolute;
right: -6%;
top: 5.3%;
width: 100%;
margin: 0%;
}
#lowerfoto{
height: 40%;
width: 100%;
=}
#fteweit{
height: 40%;
width: 100%;
}
#fterblk{
height: 10%;
width: 100%;
}

<div class="header">
<div class="background">
<img id="circle" src="circle.png" />
<div class="menu">
<a href="#">
<p id="menu1">Home</p>
</a>
<a href="#">
<p id="menu2">About</p>
</a>
<a href="#">
<p id="menu3">Contact</p>
</a>
</div>
<a href="http://www.google.com"><img id="src" src="src.png" /></a>
<img id="ham" src="ham.png" />
<div class="welcome">
<p id="big">Web Design</p>
<p id="sml">
Fusce dapibus, tellus ac cursus commodo, tortor mauris <br />
condimentum , ut fermentum massa justo sit amet <br />
erat a ante venenatis dapibus posuere velit <br />
</p>
</div>
</div>
</div>
<img id="lowerfoto" src="lower.png">
<div class="footer">
<img id="fteweit" src="fterwit.png">
<img id="fterblk" src="fterblk.png">
</div>
&#13;
我在网站的右侧有一个空白区域,我无法将其取消。我做了什么,菜单正在制作那个空间,当我删除菜单时,没有空间。但我确实需要这个菜单,所以我需要做什么才能在没有空白的情况下进行菜单?
答案 0 :(得分:2)
网站左侧和右侧的额外空间是由默认保证金引起的。
为了防止这种情况:
html, body {
margin: 0;
}
更新:您的ID #menu3
导致了此问题。我的建议是将元素放在ul
中,如下所示:
<ul class="menu">
<li id="menu" style="margin-left: 40%;"><a href="#">Home</a></li>
<li id="menu" style="margin-left: 49%;"><a href="#">About</a></li>
<li id="menu" style="margin-left: 58%;"><a href="#">Contact</a></li>
</ul>
.menu li {
display: inline-block;
color: #fff;
text-align: center;
position: absolute;
top: 5.3%;
}
答案 1 :(得分:0)
只需停用或更改所有&#34;右键&#34; &安培; &#34;余量右&#34;到0&amp;添加&#34;左&#34;属性来分隔你的元素。
#ham{
text-align: center-right;
position: absolute;
top: 6%;
**right:5%;**
}
->
#ham{
text-align: center-right;
position: absolute;
top: 6%;
**right:0%;
left: 10%**
}
---------------------
#src{
text-align: center-right;
position: absolute;
top: 5.8%;
**right:11%;**
}
-----------------
#menu3{
text-align: center;
color: white;
position: absolute;
**right: -6%;**
top: 5.3%;
width: 100%;
margin: 0%;
}