White background in select box when viewing in Chrome

后端 未结 4 492
温柔的废话
温柔的废话 2021-01-19 05:37

this html only in chrome makes the selected value non visible, the bacground of the select in other browsers is colored, only in chrome it\'s white



        
4条回答
  •  情歌与酒
    2021-01-19 06:16

    With jQuery you can do this

    $('#selectbox').css({
        'background': 'blue'
    });
    

    Check working example at http://jsfiddle.net/B2NFE/2/

提交回复
热议问题