Here is the relevant CSS & HTML.
#itemDescription,
#itemDescription2 {
overflow-y : scroll;
height : 5em;
min-height : 5em;
max-height : 20em;
}
#itemDescription2 {
display : inline-block;
resize : vertical;
}
<div class='fieldInput fullWidth' id='itemDescription2' readonly>Some PHP content here...</div>
The DIV shows a resize corner properly but will not do anything.
Already looked at things like other CSS locking in size etc.
Can I get some hints here?
2