我试图让我的页脚中的链接变为白色#fff但是我想保留页面上其余链接的颜色。我该怎么做?
#footer {
background: #3b5998;
color: #fff;
font: 11px/14px Lucida Grande, Lucida, Verdana, sans-serif;
padding: 5px 20px;
}
答案 0 :(得分:1)
也许您应该为页脚中的每个锚元素添加一个类,而不是将颜色应用到页脚本身:
/*Select only footer tagged elements*/
.footerLink
{
color:#fff;
}
答案 1 :(得分:0)
除了原始CSS之外,以下内容还会使您的页脚链接变为白色:
#footer a {
color: #FFF;
}
答案 2 :(得分:0)
#footer a {
background: #3b5998;
color: #fff;
font: 11px/14px Lucida Grande, Lucida, Verdana, sans-serif;
padding: 5px 20px;
}
这将仅设置div中的元素(大概),其中包含页脚ID。