Drop shadow on a div container?

后端 未结 6 1256
温柔的废话
温柔的废话 2020-12-23 19:52

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-

6条回答
  •  醉话见心
    2020-12-23 20:11

    .shadow {
        -moz-box-shadow:    3px 3px 5px 6px #ccc;
        -webkit-box-shadow: 3px 3px 5px 6px #ccc;
        box-shadow:         3px 3px 5px 6px #ccc;
    }
    

提交回复
热议问题