Fe-interview: [css] 第72天 怎么改变选中文本的文字颜色和背景色?

Created on 26 Jun 2019  ·  3Comments  ·  Source: haizlin/fe-interview

第72天 怎么改变选中文本的文字颜色和背景色?

css

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