Columns - Equal space between. All width of container
by davidxmartins
HTML
<div class="row">
<div class="column">owiru owieru wuowe</div>
<div class="column">owieru oi uroiwue roiu </div>
<div class="column">lwekjrlwrj</div>
</div>
CSS
.row {
display: flex;
justify-content: space-between;
width: 90%;
}
.column {
background: grey;
color: white;
padding: 16px;
}
/* fiddle styles */
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
font-family: sans-serif;
text-align: center;
}