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] 如果将axios异步请求同步化处理?
haizhilin2013
·
3
Comments
[html] 第39天 title与h1、b与strong、i与em的区别分别是什么?
haizhilin2013
·
3
Comments
[vue] vue组件之间的通信都有哪些?
undefinedYu
·
3
Comments
[html] 第48天 说说你对WEB标准和W3C的理解与认识?
haizhilin2013
·
3
Comments
[软技能] 第61天 知道IPV6是什么吗?说说它和IPV4的区别是什么?
haizhilin2013
·
3
Comments
Most helpful comment
::selection {
background-color: #222;
color: white;
}