当前位置 : 主页 > 网页制作 > css >

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

来源:互联网 收集:自由互联 发布时间:2021-06-13
参见英文答案 (CSS?) Eliminating browser’s ‘selected’ lines around a hyperlinked image?5个 每当我在Internet Explorer中选择一个元素时,它周围会出现虚线,几乎就像一个边框.反正有禁用此功能吗? 在你
参见英文答案 > (CSS?) Eliminating browser’s ‘selected’ lines around a hyperlinked image?                                    5个
每当我在Internet Explorer中选择一个元素时,它周围会出现虚线,几乎就像一个边框.反正有禁用此功能吗? 在你的CSS中:

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