标签: css pandas bootstrap-4
我有一个数据帧(df),我想在Flask应用中显示。它可以正常使用:
{{df.to_html(classes="table table-striped") | safe }}
但它太宽了。我尝试使用各种col- *设置减小列宽,如下所示:
{{df.to_html(classes="table table-striped col-sx-12") | safe }}
但似乎根本没有效果。控制表格列宽的正确方法是什么?谢谢!