Hi,
Link component in vaadin has an underline by default.
Any number of links we create, it underlines the word.Is there a way to avoid the underline and just provide the link name.
Thanks
Hi,
Link component in vaadin has an underline by default.
Any number of links we create, it underlines the word.Is there a way to avoid the underline and just provide the link name.
Thanks
Try something like that in your css file:
.v-button-link .v-button-caption, .v-nativebutton-link .v-nativebutton-caption {
[b]
text-decoration: none
[/b] !important;
}