::moz-selection 不适用于输入元素
无论如何,我是否可以将 ::moz-selection 应用于输入元素,即使我必须编辑 userChrome.css、userContent.css 或其他类似文件中的某些文件?
谢谢
Is there anyway I can get ::moz-selection applied to input elements, even if I have to edit some file in userChrome.css, userContent.css or some similar file?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
输入的值不是 DOM 中的文本节点,因此 CSS 选择器将无法定位它。
The value of an input is not a text-node in the DOM, therefore CSS-selectors will not be able to target it.
根据这个问题: textarea::selection 和 ::-moz-selection 这是不可能的。也许它会出现在未来的浏览器中。
According to this question: textarea::selection and ::-moz-selection it's not possible. Maybe it will be in future browsers.