As we all know, multi-line text box textarea can not be arbitrarily adjusted, such as, if you want to adjust, you have to write a lot of script:
This is good, because in many cases, we do not need to open to the user to adjust the text box, often just need to set the Col and row properties, fixed its size can be.
However, Google Chrome, for, an ordinary:
<textarea></textarea>
But it can be easily adjusted as follows:
This will drag our page layout, and sometimes debugging do not know how to do, and thought the style is not written well,
You can think of this is the Google browser error, who called the user himself is nothing to tamper with this multi-line text box?
However, we can do a little more perfect, in the back add style= "Resize:none", users in Google Browser can not drag, such as the right text box.
The above two graphs are actually the following code:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
You can see that style= "Resize:none" has no effect in IE."CSS" prevents Google Chrome from allowing definitions to adjust multiline text boxes.