Media Query not passing

Tell us what’s happening:
won’t pass the test, and it looks like it should… I was mindful of spaces and brackets…

Your code so far


<style>
  p {
    font-size: 20px;
  }
  

  /* Add media query below */
  @media  (max-height: 800px ){ 
    p {
    font-size: 10px;
      }
  }
</style>
  
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus quis tempus massa. Aenean erat nisl, gravida vel vestibulum cursus, interdum sit amet lectus. Sed sit amet quam nibh. Suspendisse quis tincidunt nulla. In hac habitasse platea dictumst. Ut sit amet pretium nisl. Vivamus vel mi sem. Aenean sit amet consectetur sem. Suspendisse pretium, purus et gravida consequat, nunc ligula ultricies diam, at aliquet velit libero a dui.</p>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/create-a-media-query

The code that you included above do pass the tests for me. Are you by any chance using Edge, IE, or Safari as your browser? Free Code Camp has been updated to use newer technologies. It makes the application much faster and it means that we can go much longer without having to do a huge migration like the recent one. However, Edge, Internet Explorer, and Safari are very bad about choosing not to adhere to standards and support new functionality in JS and CSS. Right now, that means that these browsers exhibit lots of unexpected behavior. If you become a web developer you will come to hate these browsers with every fiber of your being.

1 Like

Hello,
what is your output at the section “Your test output will go here” ?

1 Like

Your p element should have the font-size of 10px when the device height is less than or equal to 800px.

1 Like

The code must pass the test i tried it with chrome and firefox and it works which browser are you using and try with another browser as @ArielLeslie said

1 Like

thank you for your feedback! I walked away from this project and just saw this,
Thanks again!
T