如何内联指定伪类属性?

发布于 2024-09-10 03:12:49 字数 150 浏览 8 评论 0原文

我使用的这个 wiki(Google 协作平台)不支持样式表链接,甚至不支持 HTML 模式下的标签链接(我知道这很糟糕)。指定样式的唯一方法是内联定义它们。

我现在需要放置一个菜单栏。我已经想出了一个纯 css 菜单栏,但我在定义内联悬停类时遇到了麻烦。有什么想法吗?

This wiki I'm using (Google Sites) does not support linking of style sheets or even tags in its HTML mode (It sucks, I know). The only way to specify styles is to define them inline.

I need to put a menu bar now. I've figured out a pure css menubar, but I'm having trouble defining the hover class inline. Any ideas?

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

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

发布评论

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

评论(1

能怎样 2024-09-17 03:12:50

内联样式不太支持伪类属性,但可以使用 Javascript,例如

<a href="page.html" style="color: red;" onmouseover="this.style.color = 'blue'" onmouseout="this.style.color = 'red'">Link</a>

Pseudo-class attributes are not well supported for inline styles, but you can use Javascript, such as

<a href="page.html" style="color: red;" onmouseover="this.style.color = 'blue'" onmouseout="this.style.color = 'red'">Link</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文