Is it possible to target the final div along with its content exclusively using CSS and child combinators? My goal is to apply custom styling to it.
<body>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
+
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
Using :last-child selector does not allow for targeting elements this deeply nested in the hierarchy.