Use the following code:
textarea {
resize: none;
}
To disable a specific textarea based on the “name” attribute, use the following code:
textarea[name=foo] {
resize: none;
}
Source: https://stackoverflow.com/questions/5235142/how-do-i-disable-the-resizable-property-of-a-textarea