I am working with a nested div structure, where one is contained inside the other:
<div class="outer">
<div class="inner">
</div>
</div>
It looks something like this:
https://i.sstatic.net/r5qbD.png
I am wondering if it's possible to change the color of the outer div by clicking on the inner div. Is that achievable without using JavaScript?
**
Yes, I would like to achieve this only using HTML and CSS, no javascript!
**