我正在尝试通过DataFrame.to_html()
df.style.set_properties(color="green")
生成的HTML添加到顶部
df.to_html("filename.html")
生成以下输出
<table border="1" class="dataframe">
...
问题是如何在输出文件的顶部打印CSS信息?
<a color="green"/a> <=====
<table border="1" class="dataframe">