What happens when we set height to 200px inside the h1 rule?
- The
h1 element has a height of 200px - The font size is changed to
200px - The
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.