Categories
CSS

CSS styling groups of tags

You can do that by:

Styling groups of tags (separate them by commas): 
 h1, p,.copyright, #banner { color: #F1CD33; }
      
 Universal selector (apply to all tags): 
  * { font-weight: bold; }  

Leave a Reply

Your email address will not be published. Required fields are marked *