I am trying to write into the CSS to show an image as the background and make it cover the page.
I am using the following code saved as css/varPractice.css
body {
background-image: url("img/beautifulPic.jpg");
background-size: cover;
background-image: no-repeat;
}
and have the following line in my html doc.
<link rel="stylesheet" href="css/varPractice.css">
however no pictures shows at all. This is the only style sheet link in that html file.
Any advice?