Bild im div wird nicht angezeigt alles

ich versuche, fügen Sie ein Bild in einem div-container mit css und html, aber nicht alle Bilder angezeigt.

html-code:

<div id="wrapper">
<div id="quoteContainer">
 <span class="start_img"></span>
</div>
</div>

css:

#quoteContainer {
    color: #898989;
    background:#F9F9F9;
    border: solid 1px #ddd; 
    border-radius:10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0px 0px 10px #888;
    -moz-box-shadow: 0px 0px 10px #888;
    -webkit-box-shadow: 0px 0px 10px #888;
    margin:65px auto;
    padding:15px;
    width:500px;

}

    .start_img {
     background: url(image/img1.png); 
     border: dotted 2px black;
     width:200px;
     height:20px;
    }

abgesehen von der img, nicht einmal die Grenze zeigt. ich habe versucht mit der <img> - tag in html einfügen, das Bild innerhalb des div, das funktioniert auch nicht. gibt es etwas falsch mit dem code?

InformationsquelleAutor input | 2010-04-09
Schreibe einen Kommentar