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

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -