CSS / IE - 在IE中选择内容时删除虚线

时间:2012-01-18 14:35:43

标签: css internet-explorer

每当我在Internet Explorer中选择一个元素时,它周围会出现虚线,几乎就像一个边框。反正有禁用此功能吗?

2 个答案:

答案 0 :(得分:10)

在你的css中:

a {
  outline: none;
  border: none; /* eventually, IE specific, not sure */
}

答案 1 :(得分:2)

  

Blockquote Try *:focus {outline:0!important;但如果它有效,它只能在IE8 +中工作。

如果您应用于所有(*),这将删除输入周围的边框。因此,请确保您还为输入和textareas声明了边框。