I use bootstrap 4 in my page and I do this:
<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>
I want display the ("GO" and button)
but I see the component display in tis way:
GO
button
How is it possibile and only in one page in the other it works fine. ANyone can help me?