这是我的 HTML
<!DOCTYPE html>
<html>
<head>
<title>Corruption in India</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1 id="heading">Corruption in India</h1>
</div>
<div id="menu">
<ul>
<li><a href="http://www.google.com">GOOGLE</a></li>
</ul>
</div>
</div>
</body>
</html>
我的 CSS 是
#header {
height:%;
width:100%;
}
#heading {
margin-top:20px;
margin-left:5%;
margin-right:25%;
}
#menu {
}
#wrapper {
height:33%;
background:-moz-linear-gradient(bottom,#A6BDF1,#122C67);
}
li {
list-style-type:none;
}
a {
text-decoration:none;padding:4px 4px 4px 4px;
background-color:#112759;
}
但是按钮链接重叠了。请给我一条出路。我给了它一个线性渐变,语法大多是正确的,看起来像一个设计问题。