contenteditible 悬停时不显示边框

发布于 2024-12-13 17:09:40 字数 376 浏览 0 评论 0原文

我试图将鼠标悬停在此处的 contenteditible 部分上: http://html5demos.com/contenteditable

这是我有什么: http://jsbin.com/ipoziw/edit#javascript,html,live为什么

​当您将鼠标悬停在我的

标记上时,它是否不显示边框,就像第一个链接中的部分一样?

I'm trying to match the hover over the contenteditible section here: http://html5demos.com/contenteditable

This is what I have: http://jsbin.com/ipoziw/edit#javascript,html,live

Why is my <p> tag not showing the border when you hover over it, like the section is in the first link?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥有 2024-12-20 17:09:40

您在演示中看到的边框不是默认行为,他们使用了此 CSS:

[contenteditable]:hover:not(:focus) {
  outline: 1px dotted #ccc;
}

只需将其添加到您自己的 CSS 中: http://jsbin.com/ipoziw/2

The border you see on the demo is not default behavior, they've used this CSS:

[contenteditable]:hover:not(:focus) {
  outline: 1px dotted #ccc;
}

Just add it to your own CSS: http://jsbin.com/ipoziw/2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文