不知道我缺少什麼,但是我的HTML忽略了我的CSS樣式表規範的鏈接。 我的所有其他CSS定義在整個頁面中都能正常工作。 任何幫助,非常感謝!CSS不會更改DIV內鏈接的字體顏色
我的CSS頁面包括:
.footer {
background:url();
margin:0;
height:70px;
clear:both;
}
.footer {
margin:0;
padding:10px;
line-height: 175%;
font:normal 11px helvetica, arial, sans-serif;
color:#999;
}
a.footer {
font:normal 11px helvetica, arial, sans-serif;
color:#999;
line-height: 175%;
}
a.footer:link {
outline:none;
text-decoration:none;
}
a.footer:visited {
outline:none;
text-decoration:none;
}
a.footer:hover {
text-decoration:underline;
font-weight:normal;
}
我的網頁包括:
<div class="footer">
<a href="http://www.someurl.org"> Page Title 1</a><br />
<a href="http://www.someurl.org/credits_policies.html">Page Title 2</a>
</div>
+1進行了詳細的和很好的解釋回答。 – freebird
哇 - 太容易了!感謝您的快速回復和解釋。 – Mike