No, CSS box shadows are not supported in most older browsers that you would need to support. Plan for graceful degradation. IE unfortunately still has the majority of market share and most people are not on the latest version. Decide what your lowest common denominator is and what is acceptable for them to see. People using an older browser just aren't getting the same experience as everyone else, but you can make sure they see the most important details. Consider something like the following to customize what each browser sees. It's a pain, but I think it is the best option.
<link rel="stylesheet" type="text/css" media="screen, projection" href="/_/css/ie.css" />
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" media="screen, projection" href="/_/css/ie7.css" />
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="screen, projection" href="/_/css/ie6.css" />
<![endif]-->