If I have 2 elements side-by-side in the DOM like this:
a.button
div.container
I want to target a.button
if div.container
has class div.container.fullscreen
I was thinking something like this:
div.container.fullscreen + a.button { display:none }
, but it does not work.
Any suggestions?