删除表单周围的蓝色选择栏

时间:2010-11-16 18:14:49

标签: html css

我知道链接css是

a:focus {
text-decorations: none;
-mozselectedsomethingorother: none;
}

或类似的东西,但有没有办法删除蓝色边框

http://cl.ly/1d20272p36180S3f1c36

2 个答案:

答案 0 :(得分:1)

如果你的图像周围有一个锚点,那么这个css应该可以工作:

a img { border:none; }
a:focus { outline: none; }

......有人已在评论中回答: - )

答案 1 :(得分:0)

text-decoration: none; 

不是装饰品

相关问题