select 상자 기본 스타일 제거 (i에 기본 아래 아이콘 숨기기)

2869 단어
html 코드
 
1  <select class="info-select">
2        <option selected="selected">1option>
3        <option>2option>
4  select>

css 코드
 /*  ie          ,      */
          select::-ms-expand { display: none; }          
         .info-select{
            width: 12%;
            margin-left: 64%;
            border: none;
            outline: none;
            /*    select       */
            appearance:none;
            -moz-appearance:none;
            -webkit-appearance:none;
            -ms-appearance:none;
           /*                 */
           background: url(../img/arrow.png) no-repeat scroll right center transparent;           
         }

전재 대상:https://www.cnblogs.com/vanstrict/p/4979934.html

좋은 웹페이지 즐겨찾기