UITextField
我正在为我的项目使用ng-bootstrap和angular 4,上面的代码并不以分页组件为中心。有没有办法集中它?谢谢你的帮助。
答案 0 :(得分:4)
试试这样:
<强> template.html 强>
<div class="col-12 justify-content-center">
<ngb-pagination [collectionSize]="120" [(page)]="pageNumber"
[maxSize]="5" [rotate]="true" [boundaryLinks]="true" size="lg">
</ngb-pagination>
</div>
<强>的style.css 强>
.justify-content-center {
display: flex !important;
justify-content: center !important;
}
答案 1 :(得分:1)
现在使用bootstrap 4,您可以只使用bootstrap类
<div class="d-flex justify-content-center">
<ngb-pagination [collectionSize]="120" [(page)]="pageNumber"
[maxSize]="5" [rotate]="true" [boundaryLinks]="true" size="lg">
</ngb-pagination>
</div>