请检查下面的代码。
我的图像没有显示在菜单栏上。(很长一段时间后使用css :))
HTML:
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="navigation-container">
<div class="rectangle">
<div class="logo"/>
</div>
</div>
</body>
</html>
CSS:
#navigation-container {
margin: 0 auto;
width: 1050px;
}
.rectangle {
background: black;
position: relative;
height: 62px;
-moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
-webkit-border-radius: 3px;
margin-top:0em;
}
.logo {
background:url('company_logo.png');
}
提前致谢