pandas.formats.style.Styler.set_table_styles¶
-
Styler.
set_table_styles
(table_styles)[source]¶ 在Styler上设置表样式。它们放置在生成的HTML表格之前的
<style>
标记中。版本0.17.1中的新功能。
参数: table_styles:list
每个单独的table_style应该是具有
selector
和props
键的字典。selector
应该是应用于样式(由表的UUID自动前缀)的CSS选择器,props
应该是(属性, 值)
。返回: self:Styler
例子
>>> df = pd.DataFrame(np.random.randn(10, 4)) >>> df.style.set_table_styles( ... [{'selector': 'tr:hover', ... 'props': [('background-color', 'yellow')]}] ... )