简体   繁体   中英

how to change size dropdown arrow icon?

how to change the size of the drop down icon? it is possible in css? thanks if not ii 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>

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;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM