JSFiddle - React, Tailwind, and code Playground

HTML

<div class="home_post_sections">

                    <img src={ProfilePicture} class="home_post_propic"/>
                    <a class="home_post_username">User name</a>
                    <a class="home_post_time">23h</a>

               </div>

CSS

.home_post_sections {

    width: 100%;
    height: 33%;
    background-color: #01ff70;
    text-align: left;
    position: relative;
}

.home_post_propic {

    width: 55px;
    height: 55px;
    margin-top: 5px;
    margin-left: 5px;
    margin-bottom: 5px;


}


.home_post_username {

    margin-left: 20px;
    width: 100%;
    vertical-align: middle;

}

.home_post_time {

    position: absolute;
    top: 50%;
    right: 10px;
    vertical-align: middle;
    text-align: right;
    margin-top: -10px;

}