我想改變我的標籤按鈕之一的鏈接顏色,但它不工作。它很奇怪,因爲所有其他屬性在相同的花括號下工作得很好,但屬性clor:#FFFAFA
不起作用。我已將其設置爲背景爲#778899
,以便前者的雪白色可見。CSS鏈接顏色不起作用
這是代碼。
a:link
{
color:#FFFAFA;
text-decoration:none;
background-color:#778899
}
它始終是紫色的,從來沒有改變
下面是代碼,我實現它
<dl class="profileTab">
<dd class="profileTabContents"><a href="edit.php">Personal Infomration</a></dd>
<dd class="profileTabContents"><a href="education.php">Education, Employment & Activities</a></dd>
<dd class="profileTabContents"><a href="sports.php">Sports & Athletics</a></dd>
<dd class="profileTabContents"><a href="entertainment.php">Entertainment & Attractions</a></dd>
<dd class="profileTabContents"><a href="philoSociety.php">Philosophy & Society</a></dd>
</dl>
錯過了「;」在背景顏色:#778899 – diwang