我正在尝试更改django中搜索框的大小,我已经阅读了文档,但没有成功。请分享一些有关如何将框搜索布局更改为类似长度的Google框搜索的提示?
这是我的模板:
{% extends "base.html" %}
{% block title %}{{ section.title }}{% endblock %}
{% block content %}
<h1 align="center" style="color : #eb1509;"> Pesquisar Artigos Científicos</h1>
<DIV align="center">
<form action="/" method="post"> {% csrf_token %}
<DIV align="center">
{{ form.as_table}}
<input type="submit" name="form-submit" value="Pesquisar">
</DIV>
</form>
{% for r in respostas %}
<p align="center">{{r}}</p>
{% endfor %}
</DIV>
{% endblock %}