Utilizing bootstrap 4 within my page, I structure it as follows:
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-md-6">
<label>"GO"</label></div>
<div class="col-md-6">
<button class="btn btn-default" (click)="back()">Back</button>
</div>
</div>
</div></div>
The intention is to display both "GO"
and the button, but the component ends up displaying them in this manner:
GO
button
This anomaly occurs only on one particular page while the others function correctly. Can anyone provide assistance?