Reputation: 215
Now I have made a website, and I have integrated google maps into it. Now I am havign trouble with centering Google maps on the web page.
Here is my code:
<iframe width="640"
height="480"
align="middle"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="100"
margin-top:100px;
margin-left:140px;
src="https://maps.google.ca/?ie=UTF8&t=h&ll=49.894634,-97.119141&spn=27.26845,56.25&z=4&output=embed"></iframe>
Upvotes: 3
Views: 7008
Reputation: 128
Why not use margin:auto
for the left and right of the iframe or the div its in.
Upvotes: 4