wasup

사파리, 익스플로러 input, textarea, select 스타일 초기화 본문

IT/html, css, script

사파리, 익스플로러 input, textarea, select 스타일 초기화

wasupup 2023. 4. 18. 13:41
반응형
input, textarea { /* 아이폰 input 기본 스타일 제거 */ 
	appearance: none; 
    border-radius: 0; 
    -webkit-appearance: none; 
    -webkit-border-radius: 0; 
}
select { /* 아이폰 select 기본 스타일 제거 */ 
    appearance: none; 
    -moz-appearance: none; 
    -webkit-appearance: none; 
}
select::-ms-expand { /* 익스플로러 select 화살표 제거 for IE10, 11 */ 
	display: none; 
}
반응형
Comments