使用::selection选择器即可

1
2
3
4
5
6
7
8
9
::selection{
background: rgba(68, 68, 68, 0.8);
color: #bdc9d5;
}
::-moz-selection {
background: rgba(68, 68, 68, 0.8);
color: #bdc9d5;
}
/*两个不能写在一起用,隔开,我也不知道为啥*/