3

我正在尝试做这样的事情。我想将谷歌地图作为固定背景并将我的内容(一些文本)放在它上面,因为它是在foursquare上制作的。我也希望能够滚动我的内容。这是我的努力

#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;
}
​

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

4

1 回答 1

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;
}
于 2012-11-27T16:37:14.043 回答