JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper-resources">
    <div id="resources_row">
        <div class="resources_cell1">
            <div class="resources_lt">
                <img height="76" src="https://cdn1.iconfinder.com/data/icons/softwaredemo/PNG/256x256/Box_Red.png" width="76" />
            </div>
            <div class="resources_rt">
                <strong>Webinar</strong>
                
            </div>
        </div>
        <div class="resources_cell2">
            <div class="resources_lt">
                <img height="76" src="https://cdn1.iconfinder.com/data/icons/softwaredemo/PNG/256x256/Box_Red.png" width="76" />
            </div>
            <div class="resources_rt">
                <strong>Article</strong>
                
            </div>
        </div>
        <div class="resources_cell3">
            <div class="resources_lt">
                <img height="76" src="https://cdn1.iconfinder.com/data/icons/softwaredemo/PNG/256x256/Box_Red.png" width="76" />
            </div>
            <div class="resources_rt">
                <strong>Blog</strong>
                
            </div>
        </div>
        <div class="resources_cell4">
            <div class="resources_lt">
                <img height="76" src="https://cdn1.iconfinder.com/data/icons/softwaredemo/PNG/256x256/Box_Red.png" width="76" />
            </div>
            <div class="resources_rt">
                <strong>Market</strong>
                
            </div>
        </div>
    </div>
</div>

CSS

#wrapper-resources {
    position:relative;
    width:100%;
    border: none;
    margin: 50px 0 0 0;
}
#resources_row {
    height:100%;
    white-space:nowrap;
}
.resources_cell1, .resources_cell2, .resources_cell3, .resources_cell4 {
    height:100%;
    width:25%;
    display:inline-block;
    white-space:normal;
}
.resources_lt {
    height:100%;
    width:33%;
    display:inline-block;
    white-space:normal;
    margin-right: 20px;
    vertical-align: top;
}
.resources_rt {
    height:100%;
    width:50%;
    display:inline-block;
    white-space:normal;
    vertical-align: middle;
}
/* Fonts */
 #wrapper-resources p {
    color: #666666;
    font-family:'SegoeRegular', Helvetica, Arial, sans-serif;
    font-size: .9em;
line-height: 1.6em;}