我无法在firefox或IE上访问超链接
如果我设置了a:的背景颜色,它会正常工作,但不会设置优先级.
有任何想法吗?
这是我的css:
a.photo
{
display: inline-block;
}
a.photo img
{
border: 1px solid #C8C8C8;
background-color: #ffffff;
}
a:hover.photo img,a:active.photo img {
background-color: #FF2D59;
border: 1px solid #FF2D59;
}
a:visited.photo img
{
opacity: 0.4;
filter: alpha(opacity=40); /* For IE8 and earlier */
}
a.small img
{
width: 80px;
height: 80px;
padding: 6px;
}
我不认为CSS的顺序有什么问题,因为如果我添加背景颜色,它工作得很好:
a:visited.photo img
{
opacity: 0.4;
filter: alpha(opacity=40); /* For IE8 and earlier */
background-color: Gray;
}
最佳答案
SEC7115: :visited and :link styles can only differ by color. Some styles were not applied to :visited.
这来自IE的开发者工具控制台.我很确定Firefox会出现类似的错误.
抱歉.在那里做得不多.