I want a div with the title "gradiant" to reduce its opacity when an adjacent div with class "adjust_imagemode" has a hover state. My HTML looks like this:
<div class="slides_gradiant_bottom_heavy" title="gradiant"></div>
<div class="adjust_imagemode"> - </div>
My CSS looks like this:
.adjust_imagemode:hover + [title="gradiant"] {
opacity: .01;
}
I tried with and without quotation marks around the title. No luck. Any idea what I'm doing wrong?