JSFiddle - React, Tailwind, and code Playground

HTML

<div id="others">
    <div class="item">
        <div class="about">
            <p><strong>2009</strong> Lorem Ipsum Dolor Sit Amet</p>
            <em>Popular among top restaurants, this champagne makes special occasions especially festive.</em>
        </div>    
    </div>
</div>

CSS

#others {
    border-right: 1px solid #ddd;
    overflow: hidden;
}
#others .item {
    border: 1px solid #ddd;
    border-right: none;
    float: left;
    width: 178px;
}
#others .item p {
    font-size: 14px;
}
#others .item em {
    font-size: 13px;
    line-height: 17px;
}
#others .item .about {
    padding: 10px;
}