is it possible, to do something like this:
<div>
<ul>
<li>
<span>Something</span>
</li>
<li>
<span>Something</span>
</li>
<li>
<span>Something</span>
</li>
</ul>
<p>Some text</p>
</div>
Whereby, when I hover on any of the 'li' tags, the 'p' tag is affected. I know I can affect the 'span' in the example with the following:
li:hover span{
/* Whatever css that is needed */
}
I'm thinking of something with nth child, am I going the right way with that thought?
div li:hover <some nth child syntax that I don't know>{
/* Whatever css that is needed */
}
Or I'm open to any other ideas, so long as they're strictly css... :-) Don't worry about browser cross compatibility either...
<ul>properly. I've fixed it for you – Eric Jun 1 '11 at 9:23