Sometimes, we want to make a button in Bootstrap look like a normal link in nav-tabs with HTML.
In this article, we’ll look at how to make a button in Bootstrap look like a normal link in nav-tabs with HTML.
How to make a button in Bootstrap look like a normal link in nav-tabs with HTML?
To make a button in Bootstrap look like a normal link in nav-tabs with HTML, we add the btn
and btn-link
classes.
For instance, we write
<button type="button" class="btn btn-link">Link</button>
to add a button with the btn
and btn-link
classes to make the button look like a normal link.
Conclusion
To make a button in Bootstrap look like a normal link in nav-tabs with HTML, we add the btn
and btn-link
classes.