0

在我的 XHTML 代码中添加样式表的链接并单击 con Design View 时出现问题。链接的 CSS 可以正常工作并进行相应的更改,但是当我运行该网站时,它没有显示任何机会。

我在 XHTML 中的代码:

<head runat="server">
    <title></title>
    <link href="~/Styles/LoginCss.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">

    <div id="divGrande">
        <table cellspacing="10px" cellpadding="10px">
            <tr>
                <td>
                    <table cellspacing="2px" cellpadding="2px">
4

1 回答 1

0

我对 XHTML 不熟悉,但是 /Styles/LoginCss.css 之前必须要有 ~ 吗?为什么不能只使用从根文件夹创建相对 URL 结构?

<link href="/Styles/LoginCss.css" rel="stylesheet" type="text/css" />
于 2013-08-13T18:45:24.673 回答