单击时删除元素周围出现的蓝色边框

时间:2016-08-09 00:58:13

标签: html css

我在Mac OS上使用Firefox。当我CMND +点击表格中的文字时,TD周围会出现蓝色边框。我可以告诉CSS在点击/焦点上不显示此边框吗?



<table>
  <tr>
    <td>Hello World!</td>
  </tr>
</table>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:9)

您可能会遇到outline。试试这个:

td { outline: none; }  /* value "0" also works */

https://developer.mozilla.org/en-US/docs/Web/CSS/outline

答案 1 :(得分:2)

在你的CSS放置

table {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}