In Bootstrap 4, the anchor tags have the text-decoration: underline;
property added only on hover.
Is there a pre-existing helper or utility class to remove this underline?
I went ahead and created my own helper class in CSS to remove the underline, but I'm curious if there was one already available that I might have missed.
/* My custom helper class */
.no-underline:hover {
text-decoration: none;
}