<section class="section">
  <h1 class="title">タイトル</h1>
  <p class="text">テキストテキスト</p>
</section>
/* 詳細度 1,1,0 */
.section > :is(.title, .text, #title) {
  color: red;
}

/* 詳細度 0,2,0 */
.section > .title,
.section > .text {
  color: green;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.