JSFiddle - React, Tailwind, and code Playground

by noducks

HTML

<div>
    
    <img src="http://TinyURL.com/m9ofmpb">       
    <img src="http://TinyURL.com/m9ofmpb">
    
</div>
      
<br><br>
    
Hoping to get the following code to act like the code above, but also to expand downwards when text is edited.
 
<br><br>
        
<div>
    <img src="http://TinyURL.com/m9ofmpb"> 
    

    <textarea id="styled">
      
        Here is some texts...
        
        And some more here
        
        And here
        
    </textarea>
            
</div>

CSS

img {
    border: 1px solid #111111;
}

textarea #styled {
    border: 1px solid #111111;
    width: 256;
    height: 144;
}