I've been looking up a solution to fixing an issue about 2 divs I have not appearing side by side. It's confusing because I feel like I've been doing exactly what I've seen in several examples found online. Like this StackOverflow post.
What is it I'm missing?
Thanks!
<section class = "container">
<div id="googleMap">
<script src="redacted-for-privacy-of-group"></script>
</div>
<div id="showInfo">
<img id="customerIMG" style="width: 100%">
<p style="width: auto; height: auto" id="customerINFO"></p>
</div>
</section>
css
.container {
width: 90%;
height: 400;
margin: auto;
padding: 10px;
}
#googleMap {
width: 70%;
height: 400px;
}
#showInfo {
background-color: white;
margin-left: 70%;
height: 400px;
}