如何將地圖和標題並排放置?我不會在意標題是否在窄屏幕下方,否則它們應該並排。我甚至會採取其他佈局建議。將嵌入式地圖和隱藏溢出並排放置div
關於將div並排放置有很多問題和答案,並且在閱讀並嘗試其中的很多之後,我仍然沒有得到它的工作。這是我迄今爲止所擁有的。
http://jsfiddle.net/uun9hyfg/1/
CSS
.map_and_caption
{
width: 700px;
height: 200px;
margin: auto;
padding: 10px;
display: inline-block;
}
.map
{
width:470px;
overflow:hidden;
margin-left:5px;
margin-right:auto;
}
.caption
{
width:230px;
margin-left: 15%;
height: 200px;
float: right;
}
HTML
<div class="map_and_caption">
<div class="map">
<iframe src="https://www.google.com/maps/embed" width="800" height="300" frameborder="0" style="border:0"></iframe>
</div>
<div class="caption">
<h2>Best Price, Great Location</h2>
<p>We are located inside of the office of Dr. Joe Shmo and a Happy Place. With a comfortable atmosphere we attend you with the warmth of a Happy Place and the professionality of a medical office.</p>
</div>
</div>
謝謝。我必須在地圖上保留隱藏的溢出,但可以通過保持overflow:隱藏在.map上並將.map iframe上的寬度更改爲160%來實現。再次感謝。 – 2015-03-31 02:17:28