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] 说说你对vue组件的设计原则的理解
haizhilin2013
·
3
Comments
[vue] vue组件之间的通信都有哪些?
undefinedYu
·
3
Comments
[vue] 怎么缓存当前打开的路由组件,缓存后想更新当前组件怎么办呢?
haizhilin2013
·
3
Comments
[软技能] 第65天 最后如果技术面和HR面问你:你还有什么问题吗?你分别会问些什么?
haizhilin2013
·
3
Comments
Most helpful comment
::selection {
background-color: #222;
color: white;
}