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;
}📌 A class hierarchy is available here...
📌 Notes
- Affects only elements in the table container.
- Manually entered CSS is added on the fly to the table container.
- Supports child element styling.
