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

css

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?

Best Answer

* {
 font-size: 100%;
 font-family: Arial;
}

The asterisk implies all elements.