Hey there, I'm having an issue with a button in my GUI that I created using GWT. I'm trying to round the corners of the button, but using border-radius doesn't seem to have any effect on its appearance.
The style sheet I'm using is "com.google.gwt.user.theme.clean.Clean" and I'm also using MSThemeCompatible in the .html file. I've even checked out for reference, but I'm still not getting the outcome I want.
.gwt-Button {
width:5em;
font-size: small;
font-family: Tahoma;
color: blue;
-moz-border-radius: 10px;
-webkit-border-radius:10px;
}
That's my class for the button. Any suggestions on what I might be doing wrong would be greatly appreciated. Thanks in advance!