Bootstrap 3:如何在同一表行中重复输入标签?

时间:2019-01-10 16:47:13

标签: angularjs html5 css3 twitter-bootstrap-3

您可以在下面的代码中看到,我正在使用bootstrap 3表在同一行的标签旁边显示输入单选按钮,但是我得到的只是标签被正确地放置在了表中,而输入却全部被用完了他们的位置。

该如何解决?

current table

 <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>

0 个答案:

没有答案