当前位置: 代码迷 >> Web前端 >> 设立选中文字的颜色和背景色
  详细解决方案

设立选中文字的颜色和背景色

热度:113   发布时间:2012-10-31 14:37:32.0
设置选中文字的颜色和背景色
转载自:http://witmax.cn/css-text-selection.html

样式:
/*应用到全部标签*/
* ::-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属性
  相关解决方案