I'm using Semantic UI React and theirTextarea has a autoHeight property that auto expands the text area as you create new lines. This stops working if the Textarea is wrapped by a Grid.Column which has a display: flex property.
<Grid.Column style={{'display':'flex','flex-direction':'column', 'align-items': 'center', 'justify-content': 'center', width={6}>
<TextArea autoHeight ></TextArea>
</Grid.Column>
Basically I wanted a text box that's vertically aligned and autoexpands as more lines are added but seems I can either autoexpand it or have it vertically aligned, haven't been able to get both.
As per my comment the css below, does work:
I have open your sample code from code box and modified to look like this:
So I have removed autoHeight: cause it will generate an inline style of
height: auto
and addedheight: 100%
.That works, now as all textarea tags will have the same height you might want to add a
minHeigh: 100px // or something
to get the height you want.Thanks