0

在创建了一个新的简单 ASP.Net Web 应用程序中,在 Default.aspx 文件中添加了新的 div,如下所示

<div id="TestDiv"> Hi, This is CSS test. </div>

对于上述 div 的样式,在 Site.css 文件中的 css 下方添加

#TestDiv{ color:Red; }

如果我在 Design 视图中查看 Default.aspx 页面,发现上面的文本颜色变成了红色。但是当我运行这个应用程序并检查浏览器时,发现颜色没有改变,css也没有应用到它。我想使用在母版页中声明的相同 Site.css 来应用于上述 div,并且我不想在 Default.aspx 页面中显式声明 css 样式。你能帮我看看我怎样才能让它工作。

根据请求共享 Site.css 内容

/* DEFAULTS
----------------------------------------------------------*/

body
{
    background: #b6b7bc;
    font-size: .80em;
    font-family: "Helvetica Neue" , "Lucida Grande" , "Segoe UI" , Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #696969;
}

a:link, a:visited
{
    color: #034af3;
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #034af3;
}

p
{
    margin-bottom: 10px;
    line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0px;
}


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page
{
    width: 960px;
    background-color: #fff;
    margin: 20px auto 0px auto;
    border: 1px solid #496077;
}

.header
{
    position: relative;
    margin: 0px;
    padding: 0px;
    background: #4b6c9e;
    width: 100%;
}

.header h1
{
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: #f9f9f9;
    border: none;
    line-height: 2em;
    font-size: 2em;
}

.main
{
    padding: 0px 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
}

.leftCol
{
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.footer
{
    color: #4e5766;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}


/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink
{
    background-color: #3a4f63;
    width: 100%;
}

div.menu
{
    padding: 4px 0px 4px 8px;
}

div.menu ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: auto;
}

div.menu ul li a, div.menu ul li a:visited
{
    background-color: #465c71;
    border: 1px #4e667d solid;
    color: #dde4ec;
    display: block;
    line-height: 1.35em;
    padding: 4px 20px;
    text-decoration: none;
    white-space: nowrap;
}

div.menu ul li a:hover
{
    background-color: #bfcbd6;
    color: #465c71;
    text-decoration: none;
}

div.menu ul li a:active
{
    background-color: #465c71;
    color: #cfdbe6;
    text-decoration: none;
}

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset
{
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

fieldset p
{
    margin: 2px 12px 10px 10px;
}

fieldset.login label, fieldset.register label, fieldset.changePassword label
{
    display: block;
}

fieldset label.inline
{
    display: inline;
}

legend
{
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry
{
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry
{
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo
{
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear
{
    clear: both;
}

.title
{
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.loginDisplay
{
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

.loginDisplay a:link
{
    color: white;
}

.loginDisplay a:visited
{
    color: white;
}

.loginDisplay a:hover
{
    color: white;
}

.failureNotification
{
    font-size: 1.2em;
    color: Red;
}

.bold
{
    font-weight: bold;
}

.submitButton
{
    text-align: right;
    padding-right: 10px;
}
#TestDiv
{
    color:Red;
}
4

4 回答 4

0

它不起作用的原因之一是 Directory Structure ,这使得 CSS 无法从您的 Default.aspx 访问。否则没有理由它不会工作。您可以通过按 F12 使用 IE 开发人员工具并选择 div 并查看您的 site.css 是否已应用。您还可以查看视图源并在浏览器中复制 CSS 路径以查看它是否呈现或您正在获取 404

于 2013-04-03T12:37:05.613 回答
0

确保您制作了一个包含当前 css 文件位置的标签,并且您的链接标签必须在标题上,但 div 部分必须在正文上。

于 2013-04-03T12:40:59.750 回答
0

这个问题有几个原因。最好使用浏览器的开发工具来查看前端更改实际影响了什么。Chrome 提供了绝对最佳的调试套件...只需右键单击您的页面并在您的 div 上选择“检查元素”。

至于这个问题的具体情况:

  • 检查您是否专门引用了 Site.css。
  • 确保没有其他父 CSS 定义覆盖您的定义
  • 如果存在冲突(例如:颜色的“div”定义),请确保您的 css ID 定义出现在页面流之后

备选方案:

  • 使用脚本闭包在每页的基础上定义 CSS。
  • 对特定元素使用内联样式。

回应评论

好吧,每个浏览器都有分配给大多数元素的默认规则。如果您发现从主体继承的样式,很可能是由于 CSS“重置”样式表和/或架构,其中主体被赋予了更合理的默认值。我怀疑你甚至会在 ASP.NET 应用程序中找到它。

我建议创建您自己的样式表并在您的 default.aspx 页面中引用它。这实际上并不重要(只要您在生成样式表之后引用您的样式表),但它将所有内容分开。大多数情况下,您不需要更改生成的 CSS。

于 2013-04-03T12:43:10.187 回答
0

给你2个答案:

  1. 告诉我你的 deafult.aspx 文件在哪里?在诸如site/asp/deafult.aspx之类的文件夹中,您的样式在site/style/site.css中,如果确实如此,则添加链接标签<link href="../Style/Site.css" rel="stylesheet" type="text/css" />

  2. 如果您的网站在 Site/deafult.aspx 中,而 css 在 Site/Styles/Site.css 中,那么请确保不同的大小字相同。

于 2013-04-03T14:48:55.220 回答