gpt4 book ai didi

css - ctrl 在 firefox 中单击 td 时删除奇怪的边框

转载 作者:技术小花猫 更新时间:2023-10-29 11:20:34 25 4
gpt4 key购买 nike

当我 ctrl+ 点击一个 td 时,那个 td 会有奇怪的边框。它只发生在 firefox 中。有人会帮我吗?非常感谢。

这是现场演示 http://jsbin.com/banofehisu/edit?html,css,js,output

只需按住 control 并单击 td,您就会看到它。

最佳答案

添加这一行:

*{
-moz-user-select: none;
}

或者,您可以只在表中应用此规则。

根据@tushar 的评论,如果您希望您的文本仍然被选中,那么您可以像这样使用 jquery:

$('table').on('mousedown', function(e) {
if (e.ctrlKey) {
e.preventDefault();
}
});

关于css - ctrl 在 firefox 中单击 td 时删除奇怪的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32070258/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com