Using the markup below, the button text is underlined when hovered over. How can I get rid of that behavior?
Is there a better way to add links to a btn-group in boo
{ text-decoration: none !important}
EDIT 1:
For you example only a{text-decoration: none} will works
a{text-decoration: none}
You can use a class not to interfere with the default behaviour of tags.
Text Text
CSS:
.nounderline { text-decoration: none !important }