拆分显示在两列中,带有bootstrap和thymleaf

时间:2017-09-28 16:22:27

标签: twitter-bootstrap thymeleaf

我使用thymeleaf和bootstrap 3,我在列表的功能中创建ui组件。

我不知道列表中有多少项。

<form id="genericForm"  class="form-horizontal" role="form">
    <div th:each="userForm : ${usersForm}" class="form-group">
        <label th:attr="for='userForm'+${userForm.field}" class="col-sm-2 control-label" th:text="#{${userForm.i18n}}"></label>
            <div class="col-sm-4">
                <input  type="text" class="form-control" th:id="'userForm'+${userForm.field}" th:attr="name=${userForm.field}"/>
            </div>
    </div>  
</form>

每个ui组件都显示在另一个之下。

有没有办法在两栏中显示?

0 个答案:

没有答案