1

I feel like I've exhausted every option from the standard a href approach on down the list. Nothing has worked so far. What is the correct way to treat a bootstrap button like a link?

  • possible duplicate of [How to make a – m4n0 May 26 '15 at 15:47

2 Answers2

2
<button type="button" class="btn btn-link">Link</button>
Edgesoft
  • 282
  • 2
  • 16
0

here is a way to display link as a button (the other way around) https://jsfiddle.net/99x50s2s/42/

<a href="http://google.com" class="btn btn-success">Click here</a>
JGV
  • 5,037
  • 9
  • 50
  • 94