HKG*_*HKG 6 css input datepicker firefox-57+ firefox-quantum
自从更新firefox以来,我们现在在输入中出现了小(x)按钮,作为firefox的UI控件的一部分.
有什么办法可以用css隐藏/删除这些按钮吗?
你可以在mozilla上的firefox输入日期网页上看到这个:https: //developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date
或在这里查看图像
Clip-path 是一种粗略的方法,您可以使用它,它有效:
input[type=date] {
border: 0;
clip-path: inset(0 17px 0 0);
width: 120px
}
Run Code Online (Sandbox Code Playgroud)
https://jsfiddle.net/21zwe8yu/