带有URL的Symfony 4表单复选框,标签中的标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有URL的Symfony 4表单复选框,标签中的标签相关的知识,希望对你有一定的参考价值。
这应该很简单,但是我还是不明白...
如何显示带有包含同一行中URL的标签的表单!
使用类似的方法,我在复选框下得到了标签...
{% set terms_link %}<a title="{% trans %}Read the General Terms and Conditions{% endtrans %}"
href="{{ path('homepage') }}">{% trans %}General Terms and Conditions{% endtrans %}</a>{% endset %}
{% set general_terms_and_conditions %}{{ 'I have read and accept the %general_terms_and_conditions%.'|trans({ '%general_terms_and_conditions%': terms_link })|raw }}{% endset %}
<div class="form-group">
<label for="{{ form.agreeTerms.vars.id }}">{{ general_terms_and_conditions|raw }}</label>
</div>
答案
只需将两个元素都包装到div
元素中,然后将样式设置为display:flex
,请参见此处的工作方式:https://css-tricks.com/snippets/css/a-guide-to-flexbox/。
以上是关于带有URL的Symfony 4表单复选框,标签中的标签的主要内容,如果未能解决你的问题,请参考以下文章
Symfony buildForm:将复选框输入放在标签标签内