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

✨ Examples Styling Specific Table Cells
css
th:first-of-type,
td:first-of-type {
color: green;
font-weight: 900;
}css
td.first_name,
td.last_name {
background-color: yellow;
}✨ Example Styling the Filter Container
css
.pp-filter-paper {
background-color: yellow;
}📌 Notes
- Affects only elements in the table container.
- Manually entered CSS is added on the fly to the table container.
- Supports child element styling.
> Check the class hierarchy for available elements and class names.
