Twitter Bootstrap: Center Pills

前端 未结 7 781
广开言路
广开言路 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:56

    Or flexbox approach:

    .nav-pills {
        display: flex;
        justify-content: center;
    }
    
    0 讨论(0)
提交回复
热议问题