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 292 views
1 answer 254 views
1 answer 300 views
2 answers 369 views
3 answers 420 views
3 answers 409 views
...