标签: asp.net-mvc-4
我正在使用MVC-4创建一个简单的网站(我的第一个)。我想在主页的整个背景中包含一张图片。我该怎么做?我要去哪?代码是什么?
答案 0 :(得分:1)
在Views \ Shared_Layout.cshtml的<head> </head>标记中添加以下css代码
<head> </head>
<style> body { background-image: url('yourimage.gif'); } </style>