
I have textareas that are displaying beyond the row. I want the row to be sized to the height of the textarea. I cannot get the row in the fieldset to change height.
<div class="sheet-row sheet-row-details"> <div class="sheet-cell sheet-col0"><textarea class="sheet-ritualdesc" name="attr_ritualdescr" placeholder="Ritual Description"></textarea></div> <div class="sheet-cell sheet-col1"><textarea class="sheet-ritualcast" name="attr_ritualcasting" placeholder="Typical Casting"></textarea></div> </div> </fieldset>
.sheet-rituals .sheet-row-details { height: 60px; } .sheet-rituals .sheet-row-details .sheet-col0 { width: calc(50% - 28px - 0.4em); margin-left: 20px; } .sheet-rituals .sheet-row-details .sheet-col0 textarea { width: 100%; height: 60px; resize: none; } .sheet-rituals .sheet-row-details .sheet-col1 { width: calc(50% - 28px - 0.4em); margin-left: 8px; } .sheet-rituals .sheet-row-details .sheet-col1 textarea { width: 100%; height: 60px; resize: none; }