如何消除某些浏览器中文本框控件右下角的小 V 形符号
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
V 形用于调整文本区域的大小。要删除它,请使用:
来源
The chevron is for resizing the text area. To remove it, use:
Source