2010年4月7日 星期三
More than one way… (delegate edition)
There was a question in the forums about affecting non-hovered items. The effect they were after is that they had an unordered list of items and when they were rolled over, they would all dim (lower opacity) except the one hovered. This can be done with CSS, using pseduo-selectors. ul li:not(:hover) { opacity: 0.5; } However we know [...] http://tinyurl.com/yhznofl