I made a header image, but for some reason I can’t get it to appear from CSS.
Here’s a screenshot:

The header is in the same image directory as the index.html file. The background image is appearing, but not this header. I typed the header twice in the HTML as a div to test it in two different spots to see if it is working, but for some reason it is not showing up, I don’t get it lol.
Thanks.
#header {
background-image:url('../emailheader.png');
width:100%;
height:100%;
background-repeat:no-repeat;
}
<div id="header"></div>
Here’s an example of it. But I am not sure why it doesn’t work.
DEMO
You need provide height OR it will be dependent on the height of the inner content, which 0