【问题标题】:Can i hide the HTML5 time input spin box? [duplicate]我可以隐藏 HTML5 时间输入旋转框吗? [复制]
【发布时间】:2018-08-22 15:20:41
【问题描述】:

有什么方法可以跨浏览器隐藏/删除旋转框我正在寻找一种 CSS 或 JavaScript 方法来防止出现向上/向下箭头。

<input type="time" name="time1">

【问题讨论】:

标签: javascript html css


【解决方案1】:

试试这个 CSS:

input[type=time]::-webkit-inner-spin-button, 
input[type=time]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
<input type="time">

【讨论】:

    猜你喜欢
    • 2022-08-06
    • 2014-09-13
    • 2014-04-17
    • 1970-01-01
    • 2020-10-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2010-12-10
    相关资源
    最近更新 更多