JSFiddle - React, Tailwind, and code Playground

by kzima

HTML

<div class="red-box">
    <div class="yellow-box">
        <img src="">
         <h1>heading one</h1>

        <p>Little text one</p>
    </div>
    <div class="yellow-box">
        <img src="">
         <h1>heading two</h1>

        <p>Little text two</p>
    </div>
    <div class="yellow-box">
        <img src="">
            
         <h1>heading three</h1>

        <p>Lots of text that
            just keeps on going and going</p>
    </div>
</div>

CSS

.red-box {
    background:red;
}

.yellow-box {
    background: yellow;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    display: table-cell;
    width: 33%;
    text-align: center;
    vertical-align: center;
    /* vertical-align: top; */
}