I need to display three sets of information in an aside
tag, and I have a textarea
that I want to expand if information is too long. Every time I expand the first textarea
though the text and textarea
underneath it follow it as well. I am trying to get the textarea
to go over the text and textarea
underneath it. I tried its position as relative
but that didn't work. Here is the example of the code:
https://jsfiddle.net/07em8L7s/
<aside id="info">
<div class="font">
<div class="header">Aside</u></div>
<b>Header 1:</b><br>
<textarea disabled style="background-color: white; max-height:160px; max-width:295px; position: relative;" cols="35" rows="3">info</textarea><br>
<b>Header 2:</b><br>
info<br>
<b>Header 3:</b><br>
<textarea disabled style="background-color: white; max-height:160px; max-width:295px;" cols="35" rows="3">info</textarea><br>
</div>
</aside>