CSS Grouping Selectors ====================== In style sheets there are often elements with the same style effect. h1 { color:green; } h2 { color:green; } p { color:green; } To minimize the code, you can group selectors. Separate each selector with a comma. h1,h2,p { color:green; }