I was trying to use tailwindcss plugins tailwindcss-forms to style comment forms
produced by django comments framework.
tailwindcs-forms requires tailwind styling class
to be applied on <input type="">
level.
However, in django comments framework, the HTML template file (form.html for example) has no access to <input type="">
, which is automatically produced during template rendering process via template variables
such as {{ form.comment }}
.
What should I do with this dilemma? whether styling forms
produced by django comments framework using tailwindcss-forms is really possible?