Breadcrumb into a navbar in bootstrap 3.0.2

后端 未结 2 928
野趣味
野趣味 2021-02-08 09:32

I\'m new on Bootstrap, and i want to create a navbar with some stuff (links, dropdown...) and a breadcrumb. But i have a problem with the display: block (i think...) when i put

2条回答
  •  青春惊慌失措
    2021-02-08 09:56

    A simple float: left will do the work (margins are here to for vertical alignment) :

    .nav .breadcrumb {
        margin: 0 7px;
    }
    @media (min-width: 768px) {
        .nav .breadcrumb {
            float: left;
            margin: 7px 10px;
        }
    }
    

    enter image description here

    Updated fiddle (I also fixed your icon bug on mobile version)

提交回复
热议问题