我的 _Layout.cshtml 文件上的 ActionLink 中的 CSS 有问题。
我更改了“您的徽标在这里”文本以反映通过 CSS 类在背景中绘制的图像,但是它似乎没有加载图片..
<p class="site-title">@Html.ActionLink(" ", "Index", "Home", null, new { @class = "sitelogo" })</p>
CSS是:
.sitelogo {
background: url("../Images/topLogo.png") no-repeat center right;
display: block;
height: 84px;
width: 585px;
该框显示在具有高度和宽度尺寸的块中,但是图片不显示,但是如果我使用 FireBug 检查 CSS,当我将鼠标悬停在 CSS 中的 URL 上时它会拉出图像就好了。我是否错过了一些非常明显的东西?