На самом деле, я хочу расположить радио-кнопку, как показано ниже:
Но это так
Здесь код для вашей справки
HTML
<div class="form-group">
<label *ngFor="let radiobutton of radioItems">
<input type="radio" name="options" (click)="model.option = radiobutton"
[checked]="radiobutton === model.option">{{radiobutton}}
</label>
</div>
CSS
.form-group {
margin: 2px auto;
width: 12rem;
position: relative;
overflow-wrap: break-word;
column-count: 2;
clear: both;
}
Ссылка Демо здесь