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
[vue] watch怎么深度监听对象变化
haizhilin2013
·
3
Comments
[vue] prop验证的type类型有哪几种?
haizhilin2013
·
3
Comments
[html] 第48天 说说你对WEB标准和W3C的理解与认识?
haizhilin2013
·
3
Comments
[vue] 你了解什么是函数式组件吗?
haizhilin2013
·
3
Comments
[vue] 如果将axios异步请求同步化处理?
haizhilin2013
·
3
Comments
Most helpful comment
::selection {
background-color: #222;
color: white;
}