gpt4 book ai didi

css - 如何将 map 限制在内容框内?

转载 作者:太空宇宙 更新时间:2023-11-04 10:50:16 24 4
gpt4 key购买 nike

正如您在以下不言自明的示例中看到的,background-clip 属性不适用于 #map

<html>
<head>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" />
<style>
#rectangle {
display: block;
margin: 0px auto;
width: 400px;
height: 100px;
padding: 20px;
border: solid;
background: orange;
background-clip: content-box;
}

#map {
margin: 0px auto;
width: 400px;
height: 100px;
padding: 20px;
border: solid;
background-clip: content-box;
}
</style>
</head>
<body>
<div id="rectangle">Blablabla</div>
<br />
<script src="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js"></script>
<div id="map"></div>
<script>
var map = L.map('map').setView([51.505, -0.09], 13);

L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
</script>
</body>
</html>

有类似的吗?如何将 map 限制在内容框内?

非常感谢!

最佳答案

你可以把你的 map <div>放入另一个容器中<div>使其看起来与第一个框相似。

CSS:

#map {
width: 100%;
height: 100%;
}

#mapcontainer {
margin: 0px auto;
width: 400px;
height: 100px;
padding: 20px;
border: solid;
}

HTML:

<div id="mapcontainer">
<div id="map"></div>
</div>

关于css - 如何将 map 限制在内容框内?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35041510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com