chrome input date 스타일 변경

chrome input date 스타일 변경

Input Date 스타일 변경

html5 input date type에서 스타일 변경이 가능하다.(chrome)
<input type="date">
enter image description here
input[type="date"]::-webkit-clear-button, input[type="date"]::-webkit-inner-spin-button { 
 display: none; 
} 
input[type="date"]::-webkit-calendar-picker-indicator { 
 color: red; 
} 
input[type="date"] { 
 background: grey; 
 color: white; 
}
enter image description here

댓글

가장 많이 본 글