How to set the brand logo in Bootstrap 4 navbar to the left edge?

后端 未结 2 1482
挽巷
挽巷 2021-01-12 05:56

I have a logo as shown below.

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-12 06:34

    Remove the left padding of .navbar-brand and .container-fluid.navbar-container(you don't want to override the styles of .container-fluid, so add a new class to it).

    HTML

    
    

    CSS

    .container-fluid.navbar-container, .navbar-brand {
      padding-left: 0;
    }
    

    Working fiddle: https://jsfiddle.net/9t20dmLk/1/

提交回复
热议问题