开发者

google chrome drag textfield

开发者 https://www.devze.com 2023-01-16 23:20 出处:网络
Im making a website, in one of my pages im using a textarea, but when im look in google chrome i can drag t开发者_Go百科he textarea very big.

Im making a website, in one of my pages im using a textarea, but when im look in google chrome i can drag t开发者_Go百科he textarea very big. is there a way to disable this?

THNX! Stefan


Add the CSS rule

textarea
{
    resize: none;
}

Keep in mind that this generally should not be done unless your textarea has its own resize bar (like in Stack Overflow), resizes automatically, or is already very large.

0

精彩评论

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