Put a logo on twitter bootstrap navbar without resizing the navbar

后端 未结 1 1724
-上瘾入骨i
-上瘾入骨i 2020-12-14 19:30

Is there any way to put an image (brand logo) on bootstrap\'s navbar like:

相关标签:
1条回答
  • 2020-12-14 20:09

    the links come over the logo

    This is caused by the absolute positioning.

    Update Without resizing the image :

    .navbar .brand {
        max-height: 40px;
        overflow: visible;
        padding-top: 0;
        padding-bottom: 0;
    }
    

    Demo without resizing image (jsfiddle)

    0 讨论(0)
提交回复
热议问题