谷歌地图作为foursquare上的固定背景

时间:2012-11-27 15:58:34

标签: html css google-maps foursquare

我正在尝试做this之类的事情。我希望谷歌地图作为固定的背景,并将我的内容(一些文字)放在它上面,因为它是在foursquare上制作的。此外,我希望能够滚动我的内容。这是我的effort

#map
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}
#content
{
    width: 200px;
    margin: auto;
    position: relative;
    z-index: 1;
    border: 4px solid black;
}
​

但地图消失了。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:9)

以下是您可以执行此操作的方法:http://jsfiddle.net/X5r8r/927/

html, body {
    height:100%;
}

#map-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

#map
{
    width: 100%;
    height: 100%;
}
#content
{
    width: 200px;
    position: absolute;
    z-index: 1;
    top:0;
    left:0;
    border: 4px solid black;
    background:#fff;
    padding:20px;
}