I've been attempting to add a background image to my HTML using the code below:
body {
margin: 0;
background: url('images/lightning.jpg') no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
However, the image is not displaying fully on the screen. I then tried this solution: https://jsfiddle.net/507w9yoa/ but it didn't work either.
Can someone assist me in setting the background image without creating a scroll bar or cutting off the images? I've already attempted all available solutions here and on other sites with no success.