I need assistance achieving a full-sized background image inside a div. The div is positioned as the last element on the page, and I want it to stretch to the bottom of the page. So far, my code expands the background image to the sides, but when I adjust the height to 100%, the image disappears. I am struggling to figure out how to make it fill the entire 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;
}