Just want to understand how the height of the html tag is determined. (In chrome specifically) I am using this sample html.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>Hello</p>
</body>
</html>
I was expecting the height of the html to be 18px + margins(8px + 8px) = 34px. But the actual height is 50px. Whats contributing to the extra height.