JSFiddle - React, Tailwind, and code Playground
HTML
<body data-ng-controller="WeatherController">
<!-- TODO: implement -->
<div class="main-wrapper">
<div class="boxes-container">
<div class="box" ng-bind-html="locationHTML">
</div>
<div class="box" ng-bind-html="observationLocationHTML">
</div>
<div class="box" ng-bind-html="weatherInfoHTML">
</div>
</div>
</div>
</body>
CSS
.main-wrapper {
width: 960px;
margin: 0 auto;
font-size: 0;
line-height: 0;
}
.boxes-container {
width: 100%;
height: auto;
margin-top: 50px;
background-color: rgba(0,0,0,0.3);
}
.box {
width: 300px;
height: 300px;
background-color: rgba(0,0,0,0.3);
display: inline-block;
margin: 0;
}