How can I set the background color of

前端 未结 4 1629
梦如初夏
梦如初夏 2020-12-03 16:49

How do you set the background color of an item in an HTML list?

4条回答
  •  攒了一身酷
    2020-12-03 17:12

    I had this problem too. I found setting the appearance to none helped.

    .class {
        appearance:none;
        -moz-appearance:none;
        -webkit-appearance:none;
    
        background-color: red;
    }
    

提交回复
热议问题