Can't reduce size of resizable textarea in Chrome

google-chrome, html

Solution

You've done nothing wrong, your code is correct, but you've encountered a bug in Chrome: https://code.google.com/p/chromium/issues/detail?id=94583

It treats your css height value as a min-height value, a bug that's been around for at least 2 years

Problem

I have a textarea: ``` <textarea cols="1" rows="1" style="width:500px; height:200px;"></textarea> ``` For some reason I can't make it smaller when resizing with mouse cursor in Chrome though in Fifefox it works fine. What have I missed?

Original source