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.
我检查了新的谷歌地图外观,它在画布上有一种带阴影的边框。怎么可能做到这一点?看起来不错。
提前致谢
它只是一个设置为内部的盒子阴影(大多数盒子阴影是外部的,也就是阴影)。CSS 非常简单:
#inner-shadow { -moz-box-shadow: inset 0 0 5px #888; -webkit-box-shadow: inset 0 0 5px#888; box-shadow: inner 0 0 5px #888; }
和html:
<div id="inner-shadow"> <!-- Google Map here --> </div>