发现意外的符号:“html” Netbeans 中显示错误

发布于 2024-12-23 07:08:24 字数 104 浏览 0 评论 0原文

我在 IE6 修复的类名之前使用 *html (在 CSS 文件中)。但 Netbeans 将此类 *html 显示为错误。我怎样才能避免它?

I use *html (in CSS files) before class names for IE6 fixes. But Netbeans shows such *html as errors. How can I avoid it?

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

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

发布评论

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

评论(1

恬淡成诗 2024-12-30 07:08:24

*html is not a valid selector.

Using the * html selector is one way to target IE6 and below. The reason that it's called a hack is because they aren't any elements above the html tag: the html tag is the root of the DOM tree (except for document, but CSS can't target that). The * html selector implies that the html tag could be a descendant of something, but, being the root, it can't be.

edit: Wikipedia also has a nice explanation of this selector.

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