Bootstrap navbar align want align to the right

后端 未结 6 1707
面向向阳花
面向向阳花 2021-01-01 18:22

I\'m trying to align the navbar to the right. When I use the .pull-right class it\'s pushing the navbar too much to the right: \"off the grid\".

What am I doing wro

6条回答
  •  执笔经年
    2021-01-01 18:40

    The problem arises because in bootstrap-responsive.css the margin-right is set to 0.

    Jsfiddle with a basic mockup See in browser

    So you have to provide it with some number to look appropriate, like below:

    .navbar .nav.pull-right {
         float: right;
        margin-right: 98px; /*set margin this way in your custom styesheet*/
      }
    

    The html code to create your desired effect can be written in the following way :

提交回复
热议问题