Michael: hoven :gleichzeitig mehrer Felder vergrössern und verkleinern

Beitrag lesen

Aber dann habe ich noch eine Frage:

div#q img {width:120px;}  
div#q:hover img:not(hover) {width:100px}  
div#q:hover img:hover {width:200px}

So ist der Code nicht gemeint, oder?

[code lang=css]  
  
<style type="text/css">  
#q img {width:100px; float:left;}  
#q:hover img:not(hover) {width:50px}  
#q:hover img:hover {width:200px}  
</style>  
  
  
<div id="q"><img /></div>  
<div id="q"><img /></div>  
<div id="q"><img /></div>  
<div id="q"><img /></div>  
<div id="q"><img /></div>  
<div id="q"><img /></div>
~~~[/code]