<div class="col-12 text-center">
<ngb-pagination [collectionSize]="120" [(page)]="pageNumber"
[maxSize]="5" [rotate]="true" [boundaryLinks]="true" size="lg">
</ngb-pagination>
</div>
I am using ng-bootstrap and angular 4 for my project, the above code does not center pagination component. Is there a way to center it ? Thanks for helping.
Try like this :
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;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With