Reputation: 37
How to add Master page background Image in ASP .Net
body {
background-image: url(../Images/images1.jpg) no-repeat;
background-attachment: fixed;
margin-top: 0px;
}
this is not working
Upvotes: 0
Views: 9021
Reputation: 180
try this:-
html {
background: url(Jellyfish.jpg) no-repeat center center fixed;
background-size: cover;
}
Upvotes: 2