user3256262
user3256262

Reputation: 37

How to add Master page background Image in ASP .Net

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

Answers (1)

sankoobaba
sankoobaba

Reputation: 180

try this:-

    html { 

        background: url(Jellyfish.jpg) no-repeat center center fixed; 

        background-size: cover;
    }

Upvotes: 2

Related Questions