如何在ASP .Net中添加母版页背景图像

时间:2014-02-04 05:52:35

标签: asp.net css master-pages

如何在ASP .Net中添加母版页背景图像

body {
           background-image: url(../Images/images1.jpg) no-repeat;
           background-attachment: fixed;
            margin-top: 0px;
 }

这不起作用

1 个答案:

答案 0 :(得分:2)

试试这个: -

    html { 

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

        background-size: cover;
    }
相关问题