here is my code image where i am stuck
what i want is button to be display as justify
I am able to get button as justifying as shown in following image but this is not working in my react code
my code which is not working as expected
<div className="hidden-xs buttons col-lg-12 col-md-12">
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<div className="stretch-spacing-buttons"></div>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<button>Kartonnen brillen</button>
<div className="stretch-spacing-buttons"></div>
</div>
css
.buttons {
width: 100%;
margin-left: auto;
margin-right: auto;
text-align: justify;
-ms-text-justify: distribute-all-lines;
text-justify: distribute-all-lines;
}
.stretch-spacing-buttons {
width: 100%;
display: inline-block;
font-size: 0;
line-height: 0;
}