jQuery Simple Example

by dj19910501

HTML

<script src="//www.addressfinder.co.nz/assets/v2/widget.js"></script>

<div id="container">
  <div>
a
  </div>

  <div>
b
  </div>

  <div>
c
  </div>
</div>

CSS

#container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 900px;
  border: solid 1px red;
  height: 800px;
}

div div {
  display: inline-block;
  vertical-align: top;
  border: solid 1px blue;
  width: 250px;
  height: 200px;
}

div div:nth-child(2) {
  height: 500px;
  width: 280px;
}