I need help on this media queries

Tell us what’s happening:
It keeps telling me that your p element must have an initial font size of 20px when the device height is more than 800px

Your code so far


<style>
  
@media (max-height: 800px){p{
  font-size: 10px;
}
}
@media (min-height: 800px){p{
  font-size: 20px;
}
}


/* Only change code below this line */

/* Only change code above this line */
</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 (Linux; Android 7.0; TECNO K7 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36.

Challenge: Create a Media Query

Link to the challenge:

Hey @Ajoke23,

Good to see you pacing up.


The challenge states

Add a media query, so that the  `p`  tag has a  `font-size`  of  `10px` 
when the device's height is less than or equal to  `800px` .

That means we only need to add one media query with (max-height: 800px)


The third condition requires:

Your  `p`  element should have an initial  `font-size`  of 20px when the device  `height`  is more than 800px.

We need to set an initial font-size(without any media query or condition)
as 20px

Here is the code you can copy paste, I blurred it for spoiler reasons.

<style>
p{
  font-size:20px;
}
@media (max-height: 800px){
       p{
             font-size: 10px;
         }
}
</style>

Good Luck (^_^)

1 Like

you should have added the media query here without changing the other code
maybe reset your code and try again?