简体   繁体   English

在某些浏览器中,如何摆脱文本框控件右下角的小V形符号

[英]How do I get rid of the tiny chevron in the bottom right corner of the textbox control in some browsers

.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 我在IE中没有人字形,但在Chrome,Firefox和Safari中却有

The chevron is for resizing the text area. 人字形用于调整文本区域的大小。 To remove it, use: 要删除它,请使用:

.clASPOneP {
    resize: none;
}

Source 资源

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM