I have been trying to center some buttons using the bootstrap 4 grid system within a column with a green border. Despite using justify-content-center, I have not been successful so far.
<div class="row" style="border:1px solid red;">
<div class="col">
<button mat-raised-button>text</button>
<div *ngFor="let text of buttonText">
<button mat-raised-button>text</button>
</div>
</div>
</div>
Here is what the example currently looks like:
https://i.sstatic.net/C9ehq.png The desired result is shown below:
https://i.sstatic.net/vvTTY.png
The same example can be viewed on Stackblitz: https://stackblitz.com/edit/github-t6uyxp-z6is8f?file=src/app/app.component.html