반응형
html
<tr>
<td style="text-align: center;">생일</td>
<td>
<input type="date" name="birth" placeholder="날짜를 선택해주세요">
</td>
</tr>
css
input[type="date"]{
position: relative;
width: 40%;
color: royalblue;
font-weight: bold;
text-align: center;
}
input[type='date']::-webkit-calendar-picker-indicator {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
/* 배경은 투명하게 */
background: transparent;
/* 글자도 투명하게 이 두 설정을 통해 캘린더 아이콘을 사라지게 만든다 */
color: transparent;
cursor: pointer;
}
결과
반응형
'HTML, CSS' 카테고리의 다른 글
[CSS] 메뉴버튼 위로 마우스가 올라가면 옆에 안내바 나타내기 (0) | 2024.10.28 |
---|---|
[Semantic] (0) | 2024.09.21 |
[CSS] select 모양 변경 (0) | 2024.08.18 |
[CSS] checkbox css 체크모양 변경 (0) | 2024.08.17 |
[CSS] radio css 꾸미기 (0) | 2024.08.17 |