如何将 CSS 伪类与 GWT 的 UiBinder 一起使用?
我一直在使用 GWT 的 UiBinder 推荐的内联样式方法文档。不过,我对如何在 UiBinder 中使用 CSS 伪类感到困惑;例如,假设我否则(没有 UiBinder)有这个 CSS 规则:
#myLink:hover { background:blue }
我可以在 UiBinder 中实现该规则吗?
I've been using the in-line styles approach as recommended by GWT's UiBinder documentation. I'm puzzled, though, about how to use CSS pseudo-classes with UiBinder; for example, suppose I would otherwise (without UiBinder) have this CSS rule:
#myLink:hover { background:blue }
Can I implement that rule in UiBinder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里回答我自己的问题,以便将其从未回答的问题列表中删除。
事实证明,您可以在 UiBinder 中非常无缝地使用 CSS 伪类;例如,以下规则就可以正常工作:
I'm answering my own question here so that it is removed from the Unanswered questions list.
It turns out that you can use CSS pseudo-classes pretty seamlessly in UiBinder; for example, the following rule works just fine: