I recently came across a CSS text in one of my Code Academy lessons that looked like this:
html,body {
font-family: 'Roboto', sans-serif;
color: #404040;
background-color: #eee;
}
Why are both "html" and "body" elements targeted in the code? Will there be any adverse effects on the page if the "html" element is removed? Check it out here!