Bootstrap - How to add a logo to navbar class?

后端 未结 7 1466
傲寒
傲寒 2021-02-08 19:08

I would like to add a logo to the top navbar within the navbar-brand. I would like it to scale with the viewport size so I\'m using img-responsive2 class.

It appear that

相关标签:
7条回答
  • 2021-02-08 19:48

    For those using bootstrap 4 beta you can add max-width on your navbar link to have control on the size of your logo with img-fluid class on the image element.

     <a class="navbar-brand" href="#" style="max-width: 30%;">
        <img src="images/logo.png" class="img-fluid">
     </a>
    
    0 讨论(0)
提交回复
热议问题