Create a Media Query-Responsive Web Design Principles

Tell us what’s happening:

I think my code is right.But when i run the tests show me a error massage:" Your p element should have the font-size of 10px when the device height is less than or equal to 800px."
ps:Sorry about my poor English!

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_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36.

Its actually browser issue try with other browser man

yeah, your code is correct, can try another browser or just skip to the next challenge

Thanks! It works.:grinning:

1 Like

Thankssssss! :grinning: