<ul>
  <li>a</li>
  <li>b</li>
  <li>c</li>
  <li>d</li>
  <li>e</li>
</ul>

Can anyone tell me if it's possible to use css to blur the ul elements containing a,d,e when the user moves their mouse over the element containing c, without using JavaScript?

link|improve this question

doen't you mean "blur the li elements"? and what does "blur" mean in this case? – oezi Nov 10 '10 at 14:45
feedback

3 Answers

up vote 7 down vote accepted

Do you mean something like this:

http://jsfiddle.net/S4TMS/

link|improve this answer
Nice :) You even took the time to make a jsfiddle demo... I guess you had to first figure out if it actually works hehe – Šime Vidas Nov 10 '10 at 14:48
+1 Tested that in chrome, works nicely - I'm guessing that it will need to be extended for other browsers – amelvin Nov 10 '10 at 14:48
@amelvin Of course it works in other browsers :) Except older versions of IE that is. – Šime Vidas Nov 10 '10 at 14:50
@ŠimeVidas - Netscape 4 might struggle too. – amelvin Nov 10 '10 at 15:14
@amelvin Netscape 4? You mean the one from '97? – Šime Vidas Nov 10 '10 at 15:25
feedback

Here is a great example of what your after. That code sample demonstrates how to blur everything but the hover element.

link|improve this answer
feedback

You could try something like this, which is not supported in all browsers due to the text-shadow attribute:

ul:hover li {
    text-shadow: 0px 0px 3px black;
    color: transparent;
}

ul:hover li:hover {
    text-shadow: none;
    color: black;
}

EDIT: Added a link to a jsfiddle above, since that's apparently the cool thing that gets you votes. :P

link|improve this answer
No, speed gets you votes :) I +1 him because his answer was 20 seconds faster. – Šime Vidas Nov 10 '10 at 15:02
Speed over quality, eh? :P – cdhowie Nov 10 '10 at 15:03
Quality eventually wins, but not always :/ – Šime Vidas Nov 10 '10 at 15:07
+1 The blur effect is very good; will use this one. – amelvin Nov 10 '10 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.