I have a layout of 2 columns: the first with a map and the second with info. I managed to get the iframe on the map to fit the width, but I do not know how to dynamically increase the height and that the map is the same height as the accompanying text.
Any ideas ???
MVCE : link
HTML (basic):
<div class="row">
<div class="column">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2516.555272130855!2d4.339358315458401!3d50.894940979539264!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c3c3ac00000001%3A0x5293071d68a63709!2sAtomium!5e0!3m2!1sca!2ses!4v1530871671353"
width="95%" height="auto" // he probado poner px o porcentaje
</iframe>
</div>
<div class="column">
<div> informacion del lugar </div>
</div>
</div>
CSS:
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}