📅  最后修改于: 2022-03-11 14:47:30.779000             🧑  作者: Mango
/* Make selected text gold on a red background */
::selection {
color: gold;
background-color: red;
}
/* Make selected text in a paragraph white on a blue background */
p::selection {
color: white;
background-color: blue;
}