我正试图将我的谷歌地图居中,但它不希望从左对齐移动。每当我尝试改变它时,它都会删除我的标题。
我的css代码
#mapCanvas {
width: 960px;
height: 150px;
margin-left: auto;
margin-right: auto;
}
header {
width: 960px;
height: 150px;
margin-left: auto;
margin-right: auto;
background-color: #339966;
font-family: Garamond;
font-weight: bold;
font-style: italic;
}
h1{
color: white;
font-family: Garamond;
font-weight: normal;
font-style: italic;
text-align: center;
font-size: 40px
}
p {
color: white;
font-family: Garamond;
font-weight: normal;
font-style: italic;
text-align: center;
font-size: 20px;
}
我的html中的代码
<body>
<header>
<h1>
Find a user's location using HTML5 Geolocation
</h1>
<p> If Geolocation sercive is failed, the University of Maryland Campus will be displayed on a map</p>
</header>
<div id="mapCanvas">
</div>
</body>
[1]:https://i.stack.imgur.com/6WZiy.jpg [我目前的结果] [1]
答案 0 :(得分:0)
将position: relative
添加到#mapCanvas
的规则中,以使左/右自动边距居中工作。