I have a searchbox with auto-suggest that pops a div up underneath it with multiple search string suggestions (like google). Is it possible to have drop shadow on the auto-
CSS3 has a box-shadow property. Vendor prefixes are required at the moment for maximum browser compatibility.
box-shadow
div.box-shadow { -webkit-box-shadow: 2px 2px 4px 1px #fff; box-shadow: 2px 2px 4px 1px #fff; }
There is a generator available at css3please.