How to make a <button> in Bootstrap look like a normal link in nav-tabs?

后端 未结 6 908
春和景丽
春和景丽 2020-12-29 00:45

I\'m working in (formerly Twitter) Bootstrap 2 and I wanted to style buttons as though they were normal links. Not just any normal links, though; these are going in a

6条回答
  •  执念已碎
    2020-12-29 01:10

    In bootstrap 3, this works well for me:

    .btn-link.btn-anchor {
        outline: none !important;
        padding: 0;
        border: 0;
        vertical-align: baseline;
    }
    

    Used like:

    
    

    Demo

提交回复
热议问题