实现效果
当用户选中页面中的文字,修改默认的文字颜色和背景色
演示代码
.main{
text-align: center;
}
.content {
white-space: pre-line;
margin-top: 20px;
}
/* E9+, Opera, Google Chrome和Safari */
.content::selection {
color: #ffffff;
background-color: #ff0000;
}
/* Firefox */
.content::-moz-selection {
color: #ffffff;
background-color: #ff0000;
}
丁洲怀古
王绪〔清代〕
特统精兵御上游,
笳吹先遁惊若鸥。
扬州空把残旗耀,
赢得舟中骂不休。
在线Demo: https://mouday.github.io/front-end-demo/selection.html
参考地址 CSS3 ::selection 选择器