如何在页面中心设置我的Django表单

时间:2014-09-06 17:11:46

标签: html css django django-forms

我的模板中有这个代码:

 <form method="post" action=""> {% csrf_token %}
 <table>
 {{ form }}
 </table>
 <input type="submit" class="b1" value="OK"  >
 </form>

我在我的css文件中有这个:

 table {
  margin: 0 auto;
  }

在这种情况下,只有页面中心的表单字段。但标签输入位于页面的右侧。如何连接表单字段和输入以使它们位于页面的中心

1 个答案:

答案 0 :(得分:0)

尝试将输入放在表格行中。

<form method="post" action=""> {% csrf_token %}
<table>
{{ form }}
<tr colspan=2>
<input type="submit" class="b1" value="OK"  >
</tr>
</table>
</form>