I want to display background image in all my web pages.My body css code is
body{
background-image:url('image/silver.jpg');
background-repeat:no-repeat;
background-size:cover;
}
I include this page in my page as
<link rel="stylesheet" type="text/css" href="css/body.css">
But This couldn't display background image now.If I include body css code in head section It display background image.
"../css/body.css/", also close the link tag<link />background-image:url('../image/silver.jpg');