“我正在为一家公司编写网站代码,他们希望公司的工作时间出现在主页上。”我在网站上添加了一个地图,但是不知道如何在地图的右边直接添加文本。我已经尝试了float的几个变体: right和float: left,但都不起作用。谢谢!
<section id = "map">
<div class = "container">
<h2>Find Us Today!</h2>
<div class="mapouter">
<div class="gmap_canvas">
<iframe width="600" height="500" id="gmap_canvas"
src="https://maps.google.com/maps?
q=
5217%20Dominion%20Drive%20Dublin%2C%20VA%20&t=&z=13&ie=UTF8&iwloc=
&output=embed" frameborder="0" scrolling="no" marginheight="0"
marginwidth="0"></iframe>
<a href="https://www.embedgooglemap.net"></a>
</div>
<style = float.left>.mapouter{text-
align:right;height:500px;width:600px;}.gmap_canvas
{overflow:hidden;background:none!important;height:500px;width:600px;}
</style>
</div>
</div>
</section>
<section id = "contact">
<div class = "container">
<h3>XXXXXXXXXXXXXXXXXXXXX</h3>
<p>5217 Dominion Drive <br>
Dublin, Virginia, 24084<br>
<br>
<h3>Contact Us</h3>
<p>(540)-XXXXXXXX</p>
<h3>Hours</h3>
<p>Monday: 9AM to 5PM<br>
Tuesday: 9AM to 5PM<br>
Wednesday: 9AM to 5PM<br>
Thursday: 9AM to 5PM<br>
Friday: 9AM to 5PM<br>
Saturday: 9AM to 5PM<br>
Sunday: 9AM to 5PM<br>
</p>
</div>
</section>
I would like to add text to the right of the map with company hours and contact information
https://stackoverflow.com/questions/51273674
复制相似问题