I'm struggling to get my background image to fit 100% screen width and height. Unfortunately, the image isn't showing up at all. Can anyone tell me what I'm doing wrong?
Below is the code I've tried, but for some reason, it's not working:
<section id="forside" >
<div class="container">
<div class="row">
</div>
</div>
</section>
#forside {
background: url(images/FBIlled.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
The image is not displaying and the section with ID "forside" remains blank. I'm hoping to have the image FBIlled fill the screen entirely. You can view the full code here: https://codepen.io/anon/pen/maLYrZ