转载自:http://witmax.cn/css-text-selection.html
样式:
说明:
1. Firefox使用::-moz-selection私有选择符来实现,不支持::selection选择符
2. Chrome、Safari、Opera均使用::selection选择符
3. IE系列不支持选中文本样式
4. 选中文本样式只支持文本颜色color和背景颜色background属性
样式:
/*应用到全部标签*/
* ::-moz-selection{
background:#FFCC89 none repeat scroll 0 0;
color:#222222;
}
::selection{
background:#FFCC89 none repeat scroll 0 0;
color:#222222;
}
#someID ::-moz-selection{
background:#cc00cc none repeat scroll 0 0;
color:#fff;
}
#someID ::selection{
background:##cc00cc none repeat scroll 0 0;
color:#fff;
}
说明:
1. Firefox使用::-moz-selection私有选择符来实现,不支持::selection选择符
2. Chrome、Safari、Opera均使用::selection选择符
3. IE系列不支持选中文本样式
4. 选中文本样式只支持文本颜色color和背景颜色background属性