http://gyazo.com/17f61b8da9a1dab18c69ef1810920817
body {
font-family: 'Courier-New', Courier, monospace;
background-image:url('images/bg.png');
}
p {
color: #fff;
}
a {
text-decoration: none;
color: #fff;
}
a:hover {
color: #8e00d9;
}
/* Header */
header {
background: url('images/swirl.png');
box-shadow: 0px 1px 10px #000;
}
header h1 {
margin: auto;
background: url('images/logo.png') no-repeat;
text-indent: -9999px;
width: 380px;
height: 120px;
}
/* Navigation Top */
我的标题没有一直延伸....
HTML
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Green Cup Of Tea</title>
</head>
<body>
<header>
<h1>
Logo here
</h1>
<div id="navtop">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</header>
<div id="content">
</div>
</body>
</html>