2
對於我的登錄視圖,我願意爲其視圖設置特定的背景。如何在asp.net MVC中爲特定視圖應用背景圖像5
<body style="background-image: url('../../Content/AdminLTE/img/LogIn-BackGround.jpg');"> ...</body>
對於我的登錄視圖,我願意爲其視圖設置特定的背景。如何在asp.net MVC中爲特定視圖應用背景圖像5
<body style="background-image: url('../../Content/AdminLTE/img/LogIn-BackGround.jpg');"> ...</body>
內聯CSS不壞 儘量讓你的內容裏面一個CSS文件與下面的類
.login-bg {
background-image: url('AdminLTE/img/LogIn-BackGround.jpg')
}
在您的視圖中添加此
<link href="@Url.Content("~/Content/yourfile.css")" rel="stylesheet" />
<body class="login-bg">
..
</body>
和這個有關的提醒文件路徑將有所幫助quick-reminder-about-file-paths
試試這個:
background-image:url('/Content/AdminLTE/img/LogIn-BackGround.jpg');
還不行!謝謝 ;) –