What happens when we set height to 200px inside the h1 rule?

The h1 element has a height of 200pxThe font size is changed to 200pxThe body element is set to 200px<html>
<head>
<link rel="stylesheet" href="style.css">
<style>
h1 {
height: 200px;
background-color: teal;
}
</style>
</head>
<body>
<h1>New Zealander</h1>
</body>
</html>]]>

The h1 element has a height of 200px.