I noticed the following in some CSS code:
html,
body {
font: 20px;
}
At first glance, it seems kind of redundant to select both html and body tags. Isn't selecting the body sufficient? The body is, after all, what appears on a viewer's screen.
Is there an advantage to doing this?