答案 0 :(得分:1)
在yml中使用css类作为list的属性。
- { property: 'col2', css_class: 'pull-right' }
仅在td中应用右对齐的最佳方法是使用这样的自定义css。
- { property: 'col2', css_class: 'text-align-right' }
在您的模板或布局中添加css:
{% block head_stylesheets %}
{{ parent() }}
<style>
table td.text-align-right {
float:right !important
}
</style>
{% endblock %}