Are there any resources that explain how to style the input type "time" completely? I have been searching but unable to find a comprehensive guide with all the necessary style attributes!
The only example I came across is:
input[type="time"]{
/**style goes here **/
}
But this doesn't provide much insight...
I also attempted the following:
input[type="time"]::-webkit-inner-spin-button {
-webkit-appearance: none;
cursor:pointer;
display: block;
width:20px;
color: red;
text-align:center;
position:relative;
}
However, the spinner does not change its color to red as expected.