Safari gives resize handles for text-areas. anyone knows how 开发者_如何学JAVAto stop that? thanx
You can use CSS3 to prevent the resizing:
textarea {
resize: none;
}
Safari gives resize handles for text-areas. anyone knows how 开发者_如何学JAVAto stop that? thanx
You can use CSS3 to prevent the resizing:
textarea {
resize: none;
}
精彩评论