gpt4 book ai didi

css - div 在 Firefox 中显示居中,但在 IE 中不显示

转载 作者:太空宇宙 更新时间:2023-11-03 19:20:15 25 4
gpt4 key购买 nike

我试图在 page 中对齐一个 div(用于 Google map )通过将 ma​​rgin-leftma​​rgin-right 设置为 auto 居中,但这仅适用于 Firefox,但不适用于 Internet Explorer:

<html>
<head>
<style type="text/css">
h1,h2,h3,p { text-align: center; }
#map { width: 700; height: 280; margin-left: auto; margin-right: auto; }
</style>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false">
</script>
<script type="text/javascript">

function init() {
var latlng = new google.maps.LatLng(-34.397, 150.644);
var opts = {
zoom: 9,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map"), opts);
}

</script>
<head>
<body onload="init();">
<h3>Map</h3>
<div id="map"></div>
</body>
</html>

有谁知道,如何在 IE 中也将 div 居中?亚历克斯

最佳答案

使用文档类型,<!DOCTYPE HTML>在触发标准模式之前。

关于css - div 在 Firefox 中显示居中,但在 IE 中不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4355142/

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