Change the Font Size of an Element

This is part of the question:
Note
Due to browser implementation differences, you may need to be at 100% zoom to pass the tests on this challenge.

Here is what is being asked:
Between the style tags, give the p elements font-size of 16px. Browser and Text zoom should be at 100%.

Here is what I submitted:

h1 { font-size: 16px; }

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

How do you set the text at 100% zoom???

It’s just telling you to set your browser either using the browser’s view menu or via ctrl++/-- or ctrl + the mouse wheel. Otherwise some browsers don’t zoom it with the proper scale. For instance in Chrome if you hit the … menu you’ll see the zoom options, just make sure it’s set to 100%. IE has a similar option as well.

One note though, if this is your code to set the p to 16px you have it wrong. That will setting heading level 1 (<h1> tag) to 16px. You want to set the paragraph element (<p> tag) to 16px.

h1 {
font-size: 16px;
}