【发布时间】:2018-07-25 10:36:16
【问题描述】:
全部,
我知道这是一个相当直截了当的问题,但我很困惑为什么这不再有效。在我的 CSS 中,我有以下定义:
.table1 td a {
color: orange;
}
当我在 Microsoft Edge 中打开页面时,未读链接实际上是橙色的。当我在 Chrome 中执行此操作时,Chrome 似乎已经认为该链接已被读取。这曾经有效,但似乎在过去一两周内停止了工作。我在 Windows 10 机器上运行 Chrome,它是最新的。 Chrome 的版本是 64.0.3282.140(官方构建)(64 位)。其他人遇到过这个问题吗?
这是相关的 HTML...
<table class="table1" style="width:82%">
<col style="width:18%">
<col style="width:20%">
<col style="width:20%">
<col style="width:40%">
<tr>
<th class="title88" colspan=1>From</th>
<th class="title88" colspan=1>Received</th>
<th class="title88" colspan=1>Type</th>
<th class="title88" colspan=1>Name</th>
</tr>
<tbody>
{% for email in email_list %}
<tr>
<td colspan=1><a href="{{ email.get_absolute_url }}"><h2 class="title4">{{email.sender}}</h2></td></a>
<td colspan=1><a href="{{ email.get_absolute_url }}"><h2 class="title4">{{ email.timestamp }}</h2></td></a>
<td colspan=1><a href="{{ email.get_absolute_url }}"><h2 class="title4">{{ email.subject }}</h2></td></a>
<td colspan=1><a href="{{ email.get_absolute_url }}"><h2 class="title4">{{ email.procedure_name }}</h2></td></a>
</tr>
{% endfor %}
</tbody>
太奇怪了,它今天短暂工作,然后又停止了。
【问题讨论】:
-
我们可以看看你的HTML吗?
-
请将您自己的答案标记为正确,以便明确此问题已解决。
标签: html css google-chrome django-forms django-templates