自定义文本选择

改变文本选择的样式。

  • 使用 ::selection 伪选择器来为选中的文本设置样式。
<p class="custom-text-selection">选择一些文本。</p>
::selection {
  background: aquamarine;
  color: black;
}

.custom-text-selection::selection {
  background: deeppink;
  color: white;
}