我知道对于链接,css是
a:focus {
text-decorations: none;
-mozselectedsomethingorother: none;
}或者类似的东西,但是有没有办法去掉蓝色边框呢
http://cl.ly/1d20272p36180S3f1c36
发布于 2010-11-17 02:19:28
如果你在图片周围有一个锚点,这个css应该是有效的:
a img { border:none; }
a:focus { outline: none; }And....someone已经在评论中回答了:-)
发布于 2010-11-17 02:25:37
text-decoration: none; 不是装饰
https://stackoverflow.com/questions/4197485
复制相似问题