:where()、:is()
テスト
:where()
:is()
//html

<div class="box">

	<div class="where">

		<p>:where()</p>

	</div>

	<div class="is">

		<p>:is()</p>

	</div>

</div>





//css

:where(.box .where) p,

:is(.box .is) p

{

	color:tomato;

}

.box p

{

	color:skyblue;

}


詳細度の影響がないため:where()に関しては文字色が変わる。