html - Full sized background image in div? -


i want full sized background image, inside div. div last element, want fill bottom of page. far, have code, makes fill sides, changing height 100% makes disappear, , can't seem fill page.

.launch {     background: url('images/launchbackground.jpg') no-repeat center center fixed;    -webkit-background-size: cover;   -moz-background-size: cover;   -o-background-size: cover;   background-size: cover; } 

without seeing html, have tried:

background-image: url('images/launchbackground.jpg') 

also can try set manually:

.launch {   top: 0px;    left: 0px;    min-height: 100%;   min-width: 100%;   position: fixed;  } 

Comments

Popular posts from this blog

javascript - CasperJS/PhantomJS failing SSL handshakes on some sites even with --ssl-protocol=any -

codeigniter - Fatal error: Call to undefined function lang() in CI Merchant using CardSave -

python - Received unregistered task using Celery with Django -