In one of code academy lessons I found a CSS text like this;
html,body {
font-family: 'Roboto', sans-serif;
color: #404040;
background-color: #eee;
}
is there a particular reason to use both "html,body" elements? Is there any bad affects to the page if the "html" element is removed? http://www.codecademy.com/courses/web-beginner-en-hk5qh/0/1?content_from=make-an-interactive-website%3Ajquery-dom-manipulation
<head>...