背景画像をヘッダー div 内に表示しようとしていますが、表示されません。誰かが私が間違っているところを教えてもらえますか?
CSS コード:
#header{
width:900px;
/*background-color:#009999;*/
background-image:url('../images/background_img.jpg');
float:left;
text-align:center;
}
htmlコード
<body>
<div class="contentwrapper">
<div id="header">
hello
<!--<div id="logo">
<img src="images/small_gama_logo.png" />
</div>
<div id="company_name">
<h1>Gama Corporate Services Sdn Bhd</h1>
</div>-->
</div>
<div id="navbar">
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>