JSFiddle - React, Tailwind, and code Playground

by manofgod

HTML

<div class="wrap">
  
  
  <div id="div1">
  <img src="http://externalapp.websoftghana.com/clean/decoupes/4000.jpg">
  </div>
  
<p>This text is supposed to appear right under the image but it goes down . How to solve it ?</p>
  

</div>

CSS

#div1 {
    left: 300px;
    height: calc(100% - 197px);
    border: 1px solid black;
    background-color: yellow;
    float:left;
    overflow:hidden;
}
#div1 img{
  height:auto;
}
.wrap{
  height:100vh;
}