Reputation: 5308
Safari gives resize handles for text-areas. anyone knows how to stop that? thanx
Upvotes: 13
Views: 11350
Reputation: 712
You can use CSS3 to prevent the resizing:
textarea { resize: none; }
Upvotes: 32