问答详情
源自:7-4 CSS3选择器 ::selection选择器
为什么没效果
::selection{
background: orange;
color: white;
}
::-moz-selection{
background: orange;
color: white;
}
提问者:慕丝0796535
2017-07-28 10:56
个回答
左左右右走走停停
2018-05-28 20:20:10
用鼠标选中文字,才会有效果
1
耶果涅泊
2017-07-28 14:12:29
要选择标签
0
耶果涅泊
2017-07-28 14:11:19
p::selection{
background: orange;
color: white;
}
::-moz-selection{
background: orange;
color: white;
}
0