Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期输入元素。
<input type="date" >
下面的红色方块是可以点击按钮打开日期选择器的默认区域:
我想知道是否可以增加这个区域以使其更容易点击,像这样更宽:
html、javascript 或 css 中的解决方案都可以。
尝试使用::-webkit-calendar-picker-indicator伪元素
::-webkit-calendar-picker-indicator
#date-inp::-webkit-calendar-picker-indicator { padding-left: 100px; border: 1px dashed red; }
<input type="date" id="date-inp"/>