Is it possible to use the :target CSS selector to affect another DIV? For example, when a user visits http://website.com/#button could you style the .photo element if the elements were structured as below?
<div class="gallery">
<ul>
<li class="photo">
<li class="photo">
</ul>
<div>
<div id="button">Button Text</div>
#buttoncomes after.gallery, and you can't walk backwards with sibling selectors. – BoltClock♦ Nov 8 '11 at 0:13