Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道如何在此链接中获得像日期选择器这样的阴影
http://taitems.github.com/Aristo-jQuery-UI-Theme/
我需要使用默认类吗?
使用 CSS:
.ui-datepicker { -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); box-shadow: 0 4px 8px rgba(0,0,0,0.5); }
确保如果您运行的是 ie9,则该兼容模式已关闭,否则您将看不到阴影。花了我一个小时。