0

我在我的页面中添加了以下内容:

<head id="Head1" runat="server">
        <link href="Content/Site.css" rel="stylesheet"/>
        <title></title>
    </head>

这就是 .CSS 文件的样子:

.form {
    background-color: #b0e0e6;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

<body>
   <form runat="server" class="form">
..
....

</body>

但是,当我在 IE 中查看页面时,没有任何变化。

我究竟做错了什么?

4

3 回答 3

0

您可能需要使用“Url.Content”来确保它从根目录中查找正确的目录。

<link href="<%= Url.Content ("~/Content/Site.css") %>" rel="stylesheet" type="text/css" />
于 2013-06-17T18:37:41.903 回答
0

这是一个浏览器问题。清除 IE9 的缓存并按 F5 进行控制。问题解决了。

于 2013-06-17T23:31:28.240 回答
0

首先,将其更改为<link href="Content/Site.css" rel="stylesheet" type="text/css"/>.

此外,请确保样式表的路径正确。

确保文件顶部有 DOCTYPE 声明。

于 2013-06-17T18:21:05.990 回答