Appearance
CSS Table Editor
Style elements in the table container with custom CSS.

✨ Examples Styling Specific Table Cells
css
th.first_name,
th.last_name,
td.first_name,
td.last_name {
color: green;
font-weight: 900;
}📌 Column names are automatically added to table cells.
📌 Learn how to add custom class names...
✨ Example Styling the Filter Container
css
.pp-filter-paper {
background-color: yellow;
}✨ Example Styling Unscoped Elements
css
td {
background-color: lightblue;
}📌 Styles all td elements on the current page.
📌 Notes
- Affects only elements in the table container.
- Manually entered CSS is added on the fly to the table container.
- Supports child element styling.
- Add
bodybefore a CSS rule to prevent scoped styling. - A class hierarchy is available here...
