gpt4 book ai didi

javascript - 如何使网页元素在全选命令中不突出显示

转载 作者:行者123 更新时间:2023-11-28 15:18:51 25 4
gpt4 key购买 nike

假设我的页面上有以下简单结构:

<div class="logo">
<img src="logo.jpeg" alt="logo"/>
</div>

在 Chrome 中预览我的页面时点击 cmd+A(全选),图像 block 会突出显示。这是一个视觉示例:

enter image description here

如何防止所选元素不这样突出显示?

最佳答案

.user-select-none {
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
<div class="user-select-none">
You can not drag this.
</div>
<div class="user-select-on">
You can drag this.
</div>

关于javascript - 如何使网页元素在全选命令中不突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46606561/

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