<!DOCTYPE html>
<html>
<head>
<title>CSS ::selection Selector</title>
<style>
p::selection {
color: #00000;
background-color: #66cbff;
}
p::-moz-selection {
color: #00000;
background-color: #66cbff;
}
</style>
</head>
<body>
<p>This example is selection of every paragraph.</p>
<p>This example is selection of another one paragraph.</p>
</body>
</html>