How to apply full background image in asp.net MVC

前端 未结 5 342
野性不改
野性不改 2021-01-12 09:02

I\'m new to asp.net MVC and I need to have a full background image on the login page. Im getting confused with all of the cshtmls and getting lost on where to set the full b

5条回答
  •  逝去的感伤
    2021-01-12 09:45

    In Index.cshtml:

        @{
    Layout = null;
    }
    
    
    
    
    
    
    Index
    
    
    
    
    
    

    in Main.css:

    body {
    background-image: url(../Images/myBackgroundPictureName.png);
    background-repeat:no-repeat;
    background-size:cover;
    }
    

提交回复
热议问题