How to specify font attributes for all elements on an html web page?

Viewed 239013

When I set the font family, font size, color etc. it seems that some nested elements override these with ugly browser defaults.

Must I really specify those a dozens of times for any kind of element on my page, or is there a way to set them globally once and forever?

How to do that?

6 Answers

If you want to set styles of all elements in body you should use next code^

  body{
    color: green;
    }
Related