0

我检查了新的谷歌地图外观,它在画布上有一种带阴影的边框。怎么可能做到这一点?看起来不错。

提前致谢

4

1 回答 1

-1

它只是一个设置为内部的盒子阴影(大多数盒子阴影是外部的,也就是阴影)。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>
于 2012-05-16T19:25:32.233 回答