4

我试图在呈现表单时删除单选按钮旁边显示的项目符号。

我的模板如下:

<form class="form-horizontal" enctype="multipart/form-data" method="POST" action="" class="uniForm">
<fieldset class="inlineLabels">
{% csrf_token %}
<br>
<h6>Library Type</h6>
{{ formtoaddmodel.type }}
</fieldset>
</form>

type 字段是 a TypedChoiceField,它为选项生成单选按钮,但问题是它在每个单选按钮之前放置了一个项目符号。

要删除项目符号,我读到您需要包含 . 但是,我不确定该放在哪里。当我在 CSS 中执行此操作时,它会影响我使用项目符号列表的站点中的所有位置。有没有办法在模板中执行此操作以覆盖 CSS,如果是,如何?

4

2 回答 2

9

你试过像这样使用 CSS 吗?

fieldset.inlineLabels ul {list-style:none}
于 2012-09-26T18:01:18.847 回答
2

I had the same problem with bullets showing up next to radio buttons for flask forms. Using the solution for bullets in flask from here, I was able to get rid of the bullets like this:

<p>
   Certification:
   {{form.certification(style="list-style:none")}}
</p>
于 2019-05-28T13:09:23.367 回答