如何将 CSS 类添加到 django RadioSelect 标签?
Posted
技术标签:
【中文标题】如何将 CSS 类添加到 django RadioSelect 标签?【英文标题】:How to add CSS class to django RadioSelect label? 【发布时间】:2018-07-12 13:12:57 【问题描述】:如何为 Radioselect 小部件的自动生成标签添加 css 类
<div>
% for rdo in form.category_res %
<div class="custom-control custom-radio custom-control-inline">
rdo
</div>
% endfor %
</div>
【问题讨论】:
【参考方案1】:我希望这对将来的某人有所帮助....我这样渲染了我的模板:
% for choice in form.category_res %
<div class="custom-control custom-radio custom-control-inline">
choice.tag
<label for=" choice.id_for_label " class="custom-control-label"> choice.choice_label </label>
</div>
% endfor %
由于我使用的是引导程序,因此需要我为我的字段的标签添加一个类,其中 RadioSelect() 作为 CSS 工作的小部件...
【讨论】:
以上是关于如何将 CSS 类添加到 django RadioSelect 标签?的主要内容,如果未能解决你的问题,请参考以下文章
将 CSS 类添加到 django.contrib.auth.views.login 中的字段
将 CSS 类添加到 django RadioSelect 标签