<class home>  <styles>   <back   next>

Styles

Style for groups of Tags:

Sometimes you might want to make the same style definition for more than one tag.

ex.
h1 {color:blue}
h2 {color:blue}

You can do this, but you need to do it in the actual source code through the code inspector.

h1, h2 {color:blue}

You separate the tags by commas.