Centering the pagination in bootstrap

前端 未结 14 2018
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 13:30

I have this code in pagination


      
14条回答
  •  春和景丽
    2020-12-07 14:34

    This this, it worked for me:

    Style:

    .pagination {
      display: flex;
      justify-content: center;
    }
    
    .pagination li {
      display: block;
     }
    

    And blade:

    
    

提交回复
热议问题