这是我正在df上调用的pandas.DataFrame:
df.style.set_table_styles([
dict(selector="tr", props=[
("background-color", "black"),
("color", "lawngreen"),
("border-color", "white")]),
dict(selector="td", props=[
("text-align", "center")])]).render()
以上所有内容似乎都可以使用。我不知道的是:
<a href...>
标签的格式(即使可能,也无需单独设置标签格式) The documentation讨论了表范围的样式,但是我一直找不到能起作用的样式。我已经尝试过使用width="200px"
来set_table_attributes,但是it looks like HTML5不支持该标记(实际上也不起作用)。
是否有一种方法可以完成这两项中的一项或两项?