image in div doesn't display anything
- by fusion
i'm trying to insert an image in a div container using css and html, but it doesn't display any image.
html code:
<div id="wrapper">
<div id="quoteContainer">
<span class="start_img"></span>
</div>
</div>
css:
.start_img {
background: url(image/img1.png);
border: dotted 2px black;
width:200px;
…