我在Mac OS上使用Firefox。当我CMND +点击表格中的文字时,TD周围会出现蓝色边框。我可以告诉CSS在点击/焦点上不显示此边框吗?
<table>
<tr>
<td>Hello World!</td>
</tr>
</table>
&#13;
答案 0 :(得分:9)
您可能会遇到outline
。试试这个:
td { outline: none; } /* value "0" also works */
答案 1 :(得分:2)
在你的CSS放置
table {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}