JSFiddle - React, Tailwind, and code Playground

HTML

<div id="footer">
    <img src="http://www.imagenes11.com/images/imagenes-3d-h.jpg"/>
    <p class="texto">texto uno</p>
    <p class="texto">texto dos</p>

</div>

CSS

#footer {
position: relative;
/*margin-top: -58px; /* valor negativo del alto del footer */
height: 90px;
clear:both;
    width:500px;
    border:1px solid red;
    overflow:hidden;
    background: #666;
} 
#footer img{
float:left;
    width:90px;
}

#footer .texto{
    border-left:1px solid #cc0033;
    color: #454343;
    text-align:justify;
    font-size: 11px;
    margin-left: 10px;
    margin-right: 0px;
        
    float:left;
    margin:5px 50px;
    height:80%;
}