I'm using max-width: 100%
to contain textarea
. But it doesn't seem to work inside a flex item. Is there a property I can specify on textarea to ensure that the max will be respected?
textarea {
display: block;
margin-bottom: 1em;
max-width: 100%;
box-sizing: border-box;
overflow: auto;
}
See codepen. Flex classes from from flexboxes.