CSS未在aspx頁面中應用。它在css在同一頁面中定義時工作(href引用a.classname),但當它被放入樣式表時,它不會被應用。當元素被檢查時,Chrome表示正在應用用戶代理樣式表。ASP.NET href未應用CSS
它說一個:-webkit-任何鏈接被應用到超鏈接(用戶代理樣式表)
爲什麼這是行不通的任何想法?
<div class="summaryitem"><a ID="hl" runat="server" href="" class="someclassname">Hyperlink CSS should be applied to this</a>
下面是我使用的CSS:
a.someclassname:link {
font-weight: bold;
color: #555;
text-decoration:none;
}
a.someclassname:visited {
font-weight: bold;
color: #555;
text-decoration:none;
}
a.someclassname:hover {
font-weight: bold;
color: #555;
text-decoration:none;
}
a.someclassname:active {
font-weight: bold;
color: #555;
text-decoration:none;
}
你能告訴我們你的代碼,你引用樣式表文件?也許路徑被錯誤地指定了?相對與絕對是我現在正在考慮的...... – Sander
路徑是正確的,因爲頁面中的其他元素使用來自同一樣式表的css。 – Theomax
它說:-webkit-any-link正在應用於超鏈接(用戶代理樣式表) – Theomax