我正在使用panda,并尝试为 Dataframe 中的所有列设置相同的宽度,我已经尝试了width和min_width,但它们没有效果。
程式码片段:
s2 = df.style
s2.use(style.set_table_styles(
[{
'selector': 'th',
'props': [
('background-color', 'rgb(235, 245, 255)'),
('text-align', 'center'),
('width', '200px')]
},
{
'selector': 'td',
'props': [
('text-align', 'center')]
}
])
- 谢谢-谢谢
1条答案
按热度按时间w1e3prcc1#
你可能想试试这个-