how would I make the iframe auto-size, depending on the screen its on. I don’t want the scrolling bar along the side.
I have included this coding and it got rid of the scrolling but its still cutting off the bottom part of the California map a bit.
its the mobile version that really falls apart.
raw content:
< div class="map-container">< iframe src="http://www.cannabisresearchconsultants.com/California Map/map/index.html" frameborder="0" scrolling="no">< /iframe>< /div>
customizer:
.map-container {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
.map-container iframe, .map-container object, .map-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
how can I control the autosizing of this raw content?