📢 input[type="date"] 속성
- input[type="date"] 기본 HTML
<input type="date" data-placeholder="날짜 선택" required aria-required="true">
- placeholder 설정
input[type='date']::before {content:attr(data-placeholder);}
- 기본 달력 아이콘 삭제
input[type="date"]::-webkit-calendar-picker-indicator {background:transparent;}
- 아이폰 datepicker 선택시 텍스트 좌측정렬 (기본값은 가운데정렬)
input::-webkit-date-and-time-value {text-align:left;}
See the Pen Untitled by 조민혁 (@iqgzrljw-the-typescripter) on CodePen.
'CSS' 카테고리의 다른 글
[CSS 속성] appearance 속성 - Form 요소 초기화 (0) | 2023.06.09 |
---|---|
[CSS 선택자] :has() 가상 선택자 (0) | 2023.06.08 |
[CSS 속성] Edge의 input password 눈 아이콘 삭제 (0) | 2023.01.05 |
[CSS 선택자] ::selection (0) | 2022.12.21 |
[CSS 속성] user-select (0) | 2022.12.21 |