Go to http://kennethhedegaard.com/html2/index.html
Try to resize the window.
Can't figure out why the textarea is not scaling...
Kenneth
Go to http://kennethhedegaard.com/html2/index.html
Try to resize the window.
Can't figure out why the textarea is not scaling...
Kenneth
You should read this to make your textarea filling properly its parent.
In the code you posted the textarea has 100% width and padding which, with default values, means that you are going over with the padding. Moreover the div which contains the textarea has overflow set to hidden and that's why you cant se right border
EDIT (in case link suddently dies):
You have to add this class or rules to your textarea:
.boxsizingBorder {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Cheers