Group Selector

Group selectors allow multiple elements to share the same style rule.

Preview

Code

<style>
h1,p{
color:#16a34a;
}
</style>

<h1>Heading</h1>
<p>This paragraph shares the same style.</p>

More CSS Selectors Examples (7)