The proper way would be: <th class="sheet-bodystat">Body:</th> .charsheet .sheet-bodystat { background-color: red; } A class is the HTML attribute used to indicate which style to apply to an element. You have to specify in the HTML that the name you're putting in the element is meant to be a class, like how I've shown. However, classes aren't the only way to apply a CSS style, so you also have to specify that it's a class that you're creating on the CSS side, too. That's what the period (".") is for. In CSS, the line before the curly braces is called the selector, and it's the "search query" used to find the element(s) to apply the style to. Like I said, there are a lot of ways to narrow down your search to the specific elements you want. In my example, ".charsheet .sheet-bodystat" I have two classes, each indicated by a period (.charsheet and .sheet-bodystat). The two classes are separated by a space (this is called a descendant combinator), which means we should select the second element (any element with the class "sheet-bodystat"), but only if they're a child of the first element (any element of with class "charsheet"). The character sheet is automatically put into an element with class "charsheet," and I use it as a good practice to make sure only the character sheet is affected by the style. This is also what the "sheet-" prefix that roll20 uses is for. Another type of selector you can use on roll20 is the type selector. This is simply the name of any element you want the style to apply to without exceptions. So, if I want every table header element on my character sheet to italic, I can use this selector: .charsheet th { ... } It's especially important to use the descendant combinator (the space) with .charsheet here, otherwise this style will apply to every table header on the page, and not just in the character sheet. Mozilla has a great introduction to CSS and as well as a CSS reference sheet , if you want to learn more. Hopefully I didn't over complicate this with too much information and you found it helpful.