Hi,I have a CSS file which has something as follow:
a {
color: #777777;
font-size: 12px;
text-decoration: none ;
}
.Login{
color:#FFFFFF
}
Now in my GWT application when I using widget Hyperlink like:
Hyperlink link = new Hyperlink();
link.setText("Login");
link.setStyleName("Login");
that link will always using color of #777777 not #FFFFFF. If CSS
setting of a is necessary,how can I override it in my widget?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---