<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.green::-moz-selection {
background-color: #8ebf42;
}
.green::selection {
background-color: #8ebf42;
}
.yellow::-moz-selection {
background-color: #ffcc00;
}
.yellow::selection {
background-color: #ffcc00;
}
</style>
</head>
<body>
<p>C'est un texte avec la couleur initiale de la sélection de l'arrière-plan.</p>
<p class="green">Sélectionnez ce texte pour voir un arrière-plan vert.</p>
<p class="yellow">Sélectionnez ce texte pour voir un arrière-plan jaune.</p>
</body>
</html>