How can I use CSS pseudo-classes with GWT's UiBinder?
Posted
by David
on Stack Overflow
See other posts from Stack Overflow
or by David
Published on 2010-06-03T02:27:55Z
Indexed on
2010/06/03
2:34 UTC
Read the original article
Hit count: 379
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?
© Stack Overflow or respective owner