As another said, this is a universal selector, selecting all descendant elements under .style1. To demonstrate:
Given this HTML:
<div class="style1"> <p>foo</p> <div>bar</div> </div>
And this CSS:
.style1 { border: 1px solid; } --------------- | foo | | | | bar | --------------- .style1 * { border: 1px solid; } --------------- | foo | +-------------+ | bar | ---------------
source share