::selection选择器
<style type="text/css"> .selectColor::selection{color:#fff;background:pink;cursor: } </style>
<body> <p>普通文本,不设置::selection,选中是文本的颜色为白色,背景为蓝色</p> <p class="selectColor">选中的文本的颜色为白色,背景为粉色</p> </body>