<input type='file'/> 태그 변경하기
태그 변경하기 태그를 사용하면 파일 추가라는 버튼이 생기며 파일 첨부시 버튼 옆에 파일명이 추가된다. 아무런 변경 없이 사용하기에는 별로인데, 이것을 bootstrap을 이용해 깔끔하게 변경해 보자. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 .btn-file{ position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-alig..