input type="date" 달력 아이콘 변경하기

2022. 5. 18. 10:43CSS

<input type="date" id="birth">
input#birth::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 20px;
  background: url(../image/calendar.png);
  background-repeat: no-repeat;
}

background에 원하는 이미지를 삽입해서 변경한다

position으로 원하는 위치에 배치할 수 있다

 

결과물