codecamp

CSS3 ::selection 选择器

CSS3 ::selection 选择器

CSS完整选择器完整CSS选择器参考手册

定义和用法

::selection 选择器匹配元素中被用户选中或处于高亮状态的部分。

::selection 只可以应用于少数的CSS属性:color, background, cursor,和outline。


Examples

实例

实例

将选定的文本红色:

::selection
{
  color:#ff0000;
}
::-moz-selection
{
  color:#ff0000;
}

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

E9+, Opera, Google Chrome和Safari支持::selection选择器。

Firefox 通过其私有属性 ::-moz-selection 支持 。


CSS完整选择器完整CSS选择器参考手册

CSS3 :root 选择器
CSS3 :target 选择器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }