How to apply global font size to whole HTML document with CSS

2 Answers

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

* {
    font-size:13px !important;
}

 



answered Dec 18, 2020 by avibootz
edited Dec 18, 2020 by avibootz

Related questions

2 answers 326 views
2 answers 291 views
1 answer 258 views
1 answer 290 views
2 answers 326 views
326 views asked Jul 16, 2016 by avibootz
1 answer 643 views
...