I want to use two DIVs, side by side. First DIV with responsive width and with google map inside... And second DIV with fixed width.
HTML
<div class="wrapper">
<div id="map"></div>
<div class="right"></div>
</div>
CSS
.wrapper{
width: 90%;
margin: 0px auto;
}
#map {
height: 300px;
}
.right {
background: orange;
width: 250px;
float: right;
height: 300px;
}