Twitter Bootstrap: Center Pills

前端 未结 7 831
广开言路
广开言路 2020-12-02 11:09

My question is how you can center the pills?

I\'ve tried to add center block around and also to change the float:left to float:center but n

7条回答
  •  孤街浪徒
    2020-12-02 11:41

    If you want the pills to be centered instead of left aligned you will need to change the css. You will need to specifiy a width and change the margin to be auto.

    For example:

    .tabs, .pills {
        margin: 0 auto;
        padding: 0;
        width: 400px;
    }
    

提交回复
热议问题