Random Thoughts on Web Design & Development

Oncemade

You've probably noticed by now that webkit browsers have a handler to resize textareas. That said, you can control it with one line of CSS.

Disable resize

textarea { resize: none; }

Vertical resize only

textarea { resize: vertical; }

Horizontal resize only

textarea { resize: horizontal; }

Check theses demo showing all possible options




  • Cancel

Comments

leave a comment
  1. e, i don’t know the difference