这是我的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;
}
但是按钮链接重叠了。请给我一个出路。 我给它一个线性渐变,语法大部分是正确的,看起来像是一个设计问题。
答案 0 :(得分:0)
喜欢这个
<强> demo 强>
<强> CSS 强>
#heading {
margin-top:20px;
margin-left:5%;
margin-right:25%;
}
#wrapper {
height: 33%;
background: #a6bdf1; /* Old browsers */
background: -moz-linear-gradient(top, #a6bdf1 0%, #122c67 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a6bdf1), color-stop(100%,#122c67)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #a6bdf1 0%,#122c67 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #a6bdf1 0%,#122c67 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #a6bdf1 0%,#122c67 100%); /* IE10+ */
background: linear-gradient(to bottom, #a6bdf1 0%,#122c67 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6bdf1', endColorstr='#122c67',GradientType=0 ); /* IE6-9 */
float:left;
overflow:hidden;
width:100%;
}
#menu {
}
#menu > ul{
}
#menu > ul > li {
list-style-type: none;
}
#menu > ul > li > a {
text-decoration: none;
padding: 4px 4px 4px 4px;
background-color: #112759;
color:#ffffff;
}