我有一个链接的图像。当我单击它时,它会将我发送到某个地方,然后如果我单击返回以返回该页面,则该图像自身周围有一个 1 像素的蓝色虚线边框。此外,如果我单击它并按住该边框将变为红色。这看起来真的很糟糕,我找不到删除该边框的方法。我试过了
a:visited {text-decoration: none}
a:active {text-decoration: none}
与:
a:visited img{text-decoration: none}
a:active img{text-decoration: none}
没有效果。顺便说一句,这个边框不会出现在 chrome 中。
这是我对该图像的css代码:
#back_to_photos{
float:right;
position: relative;
margin-top:-238px;
margin-right: 40px;
}
a:visited {text-decoration: none}
a:active {text-decoration: none}
谢谢!