Disable webkit's input mask with input type=“time”?

.net, css, html, javascript

Solution

Try this:

::-webkit-datetime-edit-ampm-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-week-field,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-text {
  color: transparent;
}

Problem

I want to remove all the webkit stuff (chrome) associated with the type time. I don't want to change the type. ``` <input type="time"> ``` http://jsfiddle.net/dDqX4/ I have found similar questions removing the webkit stuff. Can I hide the HTML5 number input’s spin box? Thanks! Update: Chrome IE As you can see chrome breaks its.

Original source

Related problems