I am currently in the process of developing a project using Angular. I have implemented an *ngFor loop to dynamically add input fields based on the data retrieved from the backend. Is there a way I can ensure that two input fields are displayed on the same row?
Here is a snippet of the HTML code:
<div *ngFor="let content of group?.Content">
<label>{{content.Title}}</label>
<input type="text">
</div>