简体   繁体   中英

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

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

.clASPOneP {
    resize: none;
}

Source

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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