Creating a Media Query?

Tell us what’s happening:

Your code so far


<style>
  p {
    font-size: 10px;
  }
  
  /* Add media query below */
  @media {max-height:800px}
</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 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

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

You have a media query, but you are not doing anything with it. Inside that query you need to add the styling you want to happen

 @media (max-height:800px){
p{
Styling for p
}

Look out for the brackets, you should not use curly braces { }, it must be ( ), change it and do the styling for p

@media (max-height: 800px) {
  p {
    style goes here
  }
}
1 Like