pixeltocode
pixeltocode

Reputation: 5308

stop text-area from resizing in Safari

Safari gives resize handles for text-areas. anyone knows how to stop that? thanx

Upvotes: 13

Views: 11350

Answers (1)

Hussein Abbas
Hussein Abbas

Reputation: 712

You can use CSS3 to prevent the resizing:

textarea {
   resize: none;
}

Upvotes: 32

Related Questions