I have simple html page with body
and header elements
:
<body>
<header class="logoBar"></header>
</body>
I try to add background image to header
. If i do:
.logoBar {
background:url('http://img704.imageshack.us/img704/2162/67726065.jpg') repeat-x center top;
}
It doesn't show image. But if i make:
body {
background:url('http://img704.imageshack.us/img704/2162/67726065.jpg') repeat-x center top;
}
I see image. Why doesn't it work for header
?
Thank you.