Title: What CSS selectors are available?
Author: Tobias Bäthge
Published: December 2, 2012
Last modified: May 14, 2025

---

Back to: [Frequently Asked Questions](https://tablepress.org/faq/?output_format=md)•
[Documentation](https://tablepress.org/documentation/?output_format=md)

# What CSS selectors are available?

The most important CSS selector is `.tablepress` as it applies to all TablePress
tables on your site. If you don’t want to apply a styling setting to all tables,
but just to certain ones, you can use `.tablepress-id-N`, where `N` is the ID of
the table.

In most cases you’ll want to style table body cells, so the [CSS](https://en.wikipedia.org/wiki/CSS)
command will look like this:

    ```language-css
    .tablepress-id-N tbody td {
    	property1: value1;
    	property2: value2;
    }Code language: CSS (css)
    ```

Here, `N` has to be changed to the table’s ID, whereas `property1` and `property2`
are just for demonstration and need to be changed to the CSS properties that you
want to change.

**You can find a more thorough list of available CSS selectors in the [Documentation](https://tablepress.org/faq/documentation-css-selectors-styling/?output_format=md).**