Make texarea size not adjustable in google chrome
By default, the size of textarea inputs in google chrome is adjustable in the开发者_如何学JAVA browser. Is there anyway to make it not adjustable?
You can use this css for that:
textarea {
resize: none;
}
More Information Here. :)
精彩评论