我正在使用 Visual Studio 制作一个 Web 应用程序。当我在 .css 中进行更改时,我会重建项目并在浏览器中运行它,但更改并未应用。背景仍然像“上一个代码”中一样 上一个代码:
.link-form {
height: 100%;
width: 30%;
background: #312b82;
background-size: 100% 100%;
right: 0;
bottom: 25px;
}
做出改变:
.link-form {
height: 100%;
width: 30%;
background: url(../img/blue1.jpg) no-repeat top left;
background-size: 100% 100%;
right: 0;
bottom: 25px;
}
这是 Visual Studio 的问题还是因为我的代码?