1
ayase252 2018-12-29 23:22:59 +08:00 via iPhone
打开浏览器开发者工具看一下属性写没写对。还有:
The bgcolor attribute of <tr> is not supported in HTML5. Use CSS instead. CSS syntax: <tr style="background-color:red"> |
2
xpresslink 2018-12-29 23:52:05 +08:00
肯定可以,一般没有这么弄的,都是直接用 css 的功能
{% for aaa in aaa_list %} <tr style="background-color:{% cycle 'red' 'green' %}"> ... </tr> {% endfor %} 或者 {% if forloop.counter |divisibleby:"2" %} 如果用 bootstrap 直接就可以用现成的样式 <table class="table table-striped"> |