我正在使用Django
withCrispyForms
并将我的一个旧项目更新为BS3
.
我唯一不知道如何适应的是form-horizontal
。我的表格过去看起来像这样:
现在标签总是在输入的顶部——就像以前一样form-vertical
。
我在 Stack 上阅读了一些帖子,在 Google 上四处搜索,但没有人为我提供有效的清晰答案!
最奇怪的是,Bootstrap 的人说他们没有更改或删除这个类。
有什么想法可以让我的旧的、可爱的水平`表格恢复原状吗?
谢谢!
更新:
CrispyForms
bootstrap3
即使使用模板包,也会产生以下内容:
<div class="form-group" id="div_id_title">
<label class="control-label requiredField" for="id_title">Titel
<span class="asteriskField">*</span>
</label>
<div class="controls ">
<input type="text" name="title" maxlength="65" id="id_title" class="textinput textInput form-control">
</div>
</div>