How do you replace the arrow button on <select> element with css?

后端 未结 2 1223
深忆病人
深忆病人 2021-01-21 07:46

Trying to style the select element on a form with an image for the dropdown arrow. Dont know if this is possible yet.

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-21 08:29

    Add this style to your

    .styled-select {
       background: url(new_arrow.png) no-repeat right #fff;
    }
    

    Source: http://bavotasan.com/2011/style-select-box-using-only-css/

提交回复
热议问题