728x90
input type이 date일때는 placeholder가 적용되지 않는다
그래서 html 태그랑 css에 몇가지 추가로 적어주어야한다!
HTML
<input type="date" data-placeholder="날짜 선택" required aria-required="true"/>
CSS
input[type='date']::before {
content: attr(data-placeholder);
width: 100%;
}
input[type='date']:focus::before,
input[type='date']:valid::before {
display: none;
}
이렇게 해주면 적용한 플레이스 홀더가 잘 나오는걸 볼 수 있다
728x90
'WEB > CSS' 카테고리의 다른 글
순수 css로 tooltip 만들기(with tailwind) (0) | 2023.06.08 |
---|---|
flex 이용해서 가로 스크롤 만들기 (0) | 2022.05.03 |
수평 스크롤 만들려고 float left 하고 overflow auto 했는데, 스크롤은 안생기고 아래로 내려갈때?? (0) | 2022.02.03 |
html button default style 지우기 (0) | 2022.01.27 |
scroll css custom (0) | 2021.05.24 |