flex example

by borayeris

HTML

<div class="t">
  <div id="a">A<br>P</div>
  <div id="b">B</div>
  <div id="c">C</div>
</div>

CSS

div{
    display: flex;
}
div.t > div{
    width: 33%;
    align-items: center;
}
#a{
    background-color: red;
}
#b{
    background-color: green;
}
#c{
    background-color: grey;
}