在我的css中,似乎我不能在多个id选择器中使用几种不同的链接样式。这是我的 css 现在的样子:
#embed a:link, a:visited, a:hover, a:active
{
color: #000000;
text-decoration: underline;
}
#header a:link, a:visited, a:active
{
color: #777777;
text-decoration: none;
}
它只遵循"#header a:link, a:visited, a:active"。#embed 和 #header 都是指 html 中的两个不同的div,两者都彼此分开。
CSS 后代选择器不会分布在 ,
秒内。
您需要在每次,
后重复#header
,否则后面的选择器将应用于所有a
。
CSS代码不应该是这样的吗?
#embed a:link, #embed a:visited, #embed a:hover, #embed a:active
居