1

how to change the size of the drop down icon? it is possible in css? thanks if not i i want to replace it to image btn.. thanks!

<select>
    <option value="age">18</option>
    <option value="age">19</option>
    <option value="age">20</option>
    <option value="age">21</option>
    <option value="age">22</option>
    <option value="age">23</option>
    <option value="age">24</option>
    <option value="age">25</option>
    <option value="age">26</option>
    <option value="age">27</option>
    <option value="age">28</option>
    <option value="age">29</option>
    <option value="age">30</option>
</select>
Alexander
  • 4,420
  • 7
  • 27
  • 42
FReyes
  • 29
  • 1
  • 1
  • 8
  • http://stackoverflow.com/questions/611482/change-color-and-appearance-of-drop-down-arrow Does this help? – ThrowingSpoon May 17 '17 at 09:29
  • Possible duplicate of [replace select dropdown arrow with fa-icon](http://stackoverflow.com/questions/38990575/replace-select-dropdown-arrow-with-fa-icon) – Alexander May 17 '17 at 15:05

1 Answers1

0

use below css for your select:

.select {
  width: 500px;
  padding: 0px;
  font-size: 25px;
  line-height: 1;
  border: 0;
  border-radius: 5px;
  height: 50px;
  -webkit-appearance: none;
  background-position-x: 244px;
}
enthusiastdev
  • 880
  • 8
  • 9