您可以在下面的代码中看到,我正在使用bootstrap 3表在同一行的标签旁边显示输入单选按钮,但是我得到的只是标签被正确地放置在了表中,而输入却全部被用完了他们的位置。
该如何解决?
<form class="col-xs-10 col-lg-8">
<table class="table">
<thead>
<tr>
<th scope="col">Una sola opzione è corretta</th>
<th scope="col">Risposta</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="q in questions" >
<td>
<label ...> {{ label }}</label>
</td>
<td>
<input type="radio" .../>
</td>
</tr>
</tbody>
</table>
</form>