How to change the default HTML text selection color in CSS

1 Answer

0 votes
<p>
  HTML paragraph
</p>

<h1>
  HTML H1
</h1>
::selection {
    color: green;
    background: white;
}

 



answered Jun 14, 2021 by avibootz

Related questions

1 answer 275 views
1 answer 235 views
1 answer 277 views
2 answers 336 views
3 answers 404 views
3 answers 394 views
...