html - not getting image from css background:url -


the image doesn't show index.html

<div id="headerwrap">   <h1>make landing pagelook good.</h1>       </div><!-- /headerwrap --> 

css

#headerwrap {     background: url(../img/bbblur.jpg) no-repeat center top;     margin-top: -20px;     padding-top: 200px;     background-attachment: relative;     background-position: center center;     min-height: 650px;     width: 100%;     -webkit-background-size: 100%;     -moz-background-size: 100%;     -o-background-size: 100%;     background-size: 100%;     -webkit-background-size: cover;     -moz-background-size: cover;     -o-background-size: cover;     background-size: cover; } 

previously working shows image when preview it, add few codes preview agian, messed up, tried undo move, still doesn't show image


Comments

Popular posts from this blog

google app engine - 403 Forbidden POST - Flask WTForms -

Android layout hidden on keyboard show -

Parse xml element into list in Python -