1、选中页面文字和元素时的背景颜色

::selection {
background: #25b864;
color: #fff;
}

css  ::selection 的妙用-LMLPHP

2、不能选择页面内容(但可以拖拽内容进行复制。挺好玩的)

::selection {
background: inherit;
color: inherit;
}

css  ::selection 的妙用-LMLPHP

04-24 00:29