开发者

stop text-area from resizing in Safari

开发者 https://www.devze.com 2022-12-26 00:22 出处:网络
Safari gives resize handles for text-areas. anyone knows how 开发者_如何学JAVAto stop that? thanxYou can use CSS3 to prevent the resizing:

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;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消