tags:

views:

83

answers:

3
+7  A: 

Yes, it is possible, even in IE6.

SLaks
+2  A: 

It is possible with CSS3. But the browsers still use their own CSS property names.

Felix Kling
+1  A: 

Yes, it is possible with CSS3. Here is the sample:

selector {
  -moz-box-shadow: 5px 5px 10px #666;
  -webkit-box-shadow: 5px 5px 10px #666;
  box-shadow: 5px 5px 10px #666;
}

Would work in most of major browsers except IE.

Here is the explain:

selector {
  box-shadow: x-coordinate y-coordinate blur-radius color;
}

Cheers.

Ei Maung