#特定の子要素を持つ要素を指定するCSSセレクタ

:has() CSS pseudo-classを使います。

div:has(p) {
  background-color: red
}
<div>
  <p>foo</p>
</div>