CSS Custom Dropdown Select that works across all browsers IE7+ FF Webkit

后端 未结 6 512
闹比i
闹比i 2020-12-30 19:37

I would like to make a custom dropdown that works across all the browsers. I created one here but the arrow is not clickable. If I set it as the background for the select, t

6条回答
  •  清酒与你
    2020-12-30 19:41

    As per Link: http://bavotasan.com/2011/style-select-box-using-only-css/ there are lot of extra rework that needs to be done(Put extra div and position the image there. Also the design will break as the option drilldown will be mis alligned to the the select.

    Here is an easy and simple way which will allow you to put your own dropdown image and remove the browser default dropdown.(Without using any extra div). Its cross browser as well.

    HTML

    
    

    CSS

    select.dropdown {
      margin: 0px;
      margin-top: 12px;
      height: 48px;
      width: 100%;
      border-width: 1px;
      border-style: solid;
      border-color: #666666;
      padding: 9px;
      font-family: tescoregular;
      font-size: 16px;
      color: #666666;
      -webkit-appearance: none;
      -webkit-border-radius: 0px;
      -moz-appearance: none;
      appearance: none;
      background: url('yoururl/dropdown.png') no-repeat 97% 50% #ffffff;
      background-size: 11px 7px;
    }
    

提交回复
热议问题