Changing the highlight color when selecting text in an HTML text input

后端 未结 10 1097
有刺的猬
有刺的猬 2020-11-30 00:07

I\'ve been looking for this throughout the web and can\'t even find anyone else even asking this, let alone a solution...

Is there a way to change the color of the h

10条回答
  •  佛祖请我去吃肉
    2020-11-30 00:49

    Try this code to use:

    /* For Mozile Firefox Browser */
    
    ::-moz-selection { background-color: #4CAF50; }
    
    /* For Other Browser*/
    ::selection { background-color: #4CAF50; }
    

提交回复
热议问题