파일업로드 커스텀 - reset 파일업로드 폼필드는 브라우저마다 디자인도 다르고, 모양새도 보기 좋지 않기때문에 커스텀을 해서 사용합니다. 하지만 다른 input 과는 다르게 css만으로는 커스텀이 불가능하기때문에 js와 함께 사용해주셔야 합니다. 자세한 코드는 아래를 확인해주세요 :) [html] 파일 찾아보기 파일 지우기 [css] /* 파일 업로드 */ .file_wrap{position: relative;} .file_wrap:after{content: '';display: block;clear: both} .filebox input[type="file"] { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overfl..