0
I was able to remove the scroll bar and the "x" that appears on Chrome with these codes
input[type="time"]::-webkit-clear-button
{
display: none;
}
input[type="time"]::-webkit-inner-spin-button
{
display: none;
}
<input type="time">
"x" is already standard input
– Caio Santos
I believe I can not remove, who renders this is the browser and each browser has this type of input with the specific appearance as you can read here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/time#Apar%C3%Aancia
– LeAndrade
@Leandrade is true, but I found a solution to remove at least the scroll bar
– Caio Santos
@hugocsl vlw helped me
– Caio Santos
Legal Caio que bom que ajudou ai, consider marking the suggestion of duplicate. []s
– hugocsl