I'm trying to display 2 input fields and a button side by side. Tried many combinations, but still no luck. The code block of the and is below. Can you please help on how to make them on the same row ide by side. Thanks so much
Code:
<div [id]="id" class="row" style="margin: 0rem; align-items: center">
...
<ng-container [formGroup]="igf">
...
<div class="p-0">
...
<div class="input-group input-group-sm">
...
<ng-container>
...
<input> --first
<div class="input-group">
...
<input> --second
</div>
</ng-container>
</div>
</div>
</ng-container>
</div>