I'm trying to load an image as a background image as a responsive background image. but the image isn't loading. here is my CSS code.
.cover{
    height: auto;
    width: 100%;
    background-image: url(../img/cover.jpg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
}
 
    