-moz-box-shadow: #333333 0 1px 5px 0 1px 1px 5px 0;
-webkit-box-shadow: #333333 0 1px 5px 0 1px 1px 5px 0;
-o-box-shadow: #333333 0 1px 5px 0 1px 1px 5px 0;
box-shadow: #333333 0 1px 5px 0 1px 1px 5px 0;
which doesn't show any shadow at all. What is the right syntax please?
--
You received this message because you are subscribed to the Google Groups "Compass" group.
To post to this group, send email to compas...@googlegroups.com.
To unsubscribe from this group, send email to compass-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/compass-users?hl=en.
Sent from an Asteroid in Space™
#box-shadow-custom {
@include box-shadow(red 2px 2px 10px); }
as a working code but instead I had to do what IGbanam suggested which
is:
#box-shadow-custom {
@include box-shadow(red, 2px, 2px, 10px); }
On Dec 5, 8:27 am, spav freak <spa...@gmail.com> wrote:
> see this ..http://compass-style.org/examples/compass/css3/box_shadow/