How to apply full background image in asp.net MVC

前端 未结 5 339
野性不改
野性不改 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:30

    I think that best solutions is to do that via style sheets (css). All styles should be in a separate css file. For beautiful code don't use in-line styling:

    body {
        background-image: url('your_img_path');
        margin: 0;
    }
    

提交回复
热议问题