参见英文答案 (CSS?) Eliminating browser’s ‘selected’ lines around a hyperlinked image?5个 每当我在Internet Explorer中选择一个元素时,它周围会出现虚线,几乎就像一个边框.反正有禁用此功能吗? 在你
          每当我在Internet Explorer中选择一个元素时,它周围会出现虚线,几乎就像一个边框.反正有禁用此功能吗? 在你的CSS中:
a {
  outline: none;
  border: none; /* eventually, IE specific, not sure */
}
        
             