How to apply global color to whole HTML document with CSS

2 Answers

0 votes
answered Dec 18, 2020 by avibootz
0 votes
/*
   !important = nothing can override this style
*/

* {
    color: #545454 !important;
}

 



answered Dec 18, 2020 by avibootz

Related questions

2 answers 331 views
2 answers 368 views
4 answers 521 views
1 answer 316 views
2 answers 384 views
1 answer 301 views
...