Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.io.formats.style.Styler.set_table_styles

Styler.set_table_styles(table_styles)[source]

Set the table styles on a Styler. These are placed in a <style> tag before the generated HTML table.

Parameters:

table_styles: list

Each individual table_style should be a dictionary with selector and props keys. selector should be a CSS selector that the style will be applied to (automatically prefixed by the table’s UUID) and props should be a list of tuples with (attribute, value).

Returns:
self : Styler

Examples

>>> df = pd.DataFrame(np.random.randn(10, 4))
>>> df.style.set_table_styles(
...     [{'selector': 'tr:hover',
...       'props': [('background-color', 'yellow')]}]
... )
Scroll To Top