I've been struggling with this issue for hours. Could someone please help me figure out why the image is not showing up at all? I'm working with XHTML 1.0 strict. Thank you in advance.
CSS:
#flags {
position: relative;
background-image:url(example.png);
background-repeat: no-repeat;
float: right;
margin-left: 18px;
width:400px;
height:400px;
}
HTML:
<div id="flags">
<p>text
<br />
text
<br/>
</p>
<ul>
<li>list1</li>
<li>list2</li>
<li>list3</li>
</ul>
</div>