Sooo...I am working on a custom Rogue Trader sheet, and want to add some text under the skills. The original used a table for the skill list, and this worked great. I added in some expanding feilds and everything was good. Now, I am trying to use the sheet-row below instead of table...and its not expanding (ya know, because of the fixed height). <div class="item 250">
<input type="checkbox" class="sheet-hider" name="attr_acrobatics_open" value="1" checked="true"/><span></span>
Acrobatics (Ag)
<div class="sheet-hold">
<textarea class="sheet-small sheet-talent" name="attr_acrobatics_notes"></textarea>
</div>
</div> .charsheet .sheet-wrapper .sheet-row {
height: 24px;
margin: 0 0 2px;
} With the expanding field inside the height limiting container, I am having difficulty finding a solution. Is there a way to tell the container to stay in one size most of the time, but when forced to, expand? This sounds like "flex" but I haven't figured that out yet. And I am hoping for a real easy explanation. Like I missed a comma or something.