bleeping
coder
Projects
JavaScript
TypeScript
Python
C++
C#
Go
Fe-interview: [css] 第72天 怎么改变选中文本的文字颜色和背景色?
Created on 26 Jun 2019
·
3
Comments
·
Source:
haizlin/fe-interview
第72天 怎么改变选中文本的文字颜色和背景色?
css
Source
Most helpful comment
::selection {
background-color: #222;
color: white;
}
All 3 comments
专有选中的伪类
::selection {
background-color: #222;
color: white;
}
::selection {
background-color: #222;
color: white;
}
Was this page helpful?
0
/ 5 -
0
ratings
Related issues
[js] 第105天 写个方法,找出指定字符串中重复最多的字符及其长度
haizhilin2013
·
31
Comments
[js] 第7天 统计某一字符或字符串在另一个字符串中出现的次数
haizhilin2013
·
57
Comments
[js] 第44天 深度克隆对象的方法有哪些,并把你认为最好的写出来
haizhilin2013
·
22
Comments
[js] 第24天 如何快速让一个数组乱序,写出来
haizhilin2013
·
25
Comments
[css] 第1天 圣杯布局和双飞翼布局的理解和区别,并用代码实现
haizhilin2013
·
31
Comments
Most helpful comment
::selection {
background-color: #222;
color: white;
}