I am attempting to use CSS to display div id='b'
when I hover over div id='a'
, but I am struggling because div 'a'
is nested within another div
that does not contain div 'b'
.
<div id='content'>
<div id='a'>
Hover me
</div>
</div>
<div id='b'>
Show me
</div>