如何消除某些浏览器中文本框控件右下角的小 V 形符号

发布于 2024-12-10 18:48:29 字数 358 浏览 0 评论 0原文

.clASPOneP 
 {
     overflow: hidden;
     height:40px;
     width:40px;
     border-style:none;  
     border-width:0px;
     background-color:#C0C0C0;
     font-family:Courier;
     font-size:xx-large;
     padding:0px;
     text-align:center;
     vertical-align:middle;
 }

我在 IE 中没有看到 V 形图标,但在 Chrome、Firefox 和 Safari 中却有

.clASPOneP 
 {
     overflow: hidden;
     height:40px;
     width:40px;
     border-style:none;  
     border-width:0px;
     background-color:#C0C0C0;
     font-family:Courier;
     font-size:xx-large;
     padding:0px;
     text-align:center;
     vertical-align:middle;
 }

I do not get a chevron in IE but I do in Chrome, Firefox and Safari

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烈酒灼喉 2024-12-17 18:48:29

V 形用于调整文本区域的大小。要删除它,请使用:

.clASPOneP {
    resize: none;
}

来源

The chevron is for resizing the text area. To remove it, use:

.clASPOneP {
    resize: none;
}

Source

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文