flexbox example
HTML
<div class="thing"></div>
<div class="thing"></div>
<div class="thing"></div>
SCSS
body {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
.thing {
width: 200px;
height: 200px;
background: hotpink;
margin: 1em;
}