Hey guys, I've been playing around with CSS so I could implement it into my site. I've pretty much got it down. However, something I'm seeing that doesn't seem to be explained anywhere is when the selector has multiple items that aren't seperated by commas, as so:
Code:
table table td div img {visibility:hidden;}
Does this indicate how particular items nested in a certain way would behave? For example, would the above style sheet have the following effect?
Code:
<table>
<table>
<tr>
<td>
<div><img src=hooplah.jpg></div> //this image is hidden
</td>
</tr>
<tr>
<td>
<img src=halpooh.jpg> //whereas this one is not
</td>
</tr>
</table
</table>