JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<div class="videos">
    <div>
      <img src="abc" />
      <div class="right">
          <p>some paragraph text</p>
      </div>
    </div>
   
</div>

CSS

.videos{
  display: inline-block; /* i have to use this as other elements to be inline-block */
}

* {
    margin: 0;
    padding: 0;
}

.videos img{
    float: left;
}

div.right {
    float: right;
}