Make Typography Responsive/Ayah

Tell us what’s happening:
what is going on :confused:

Your code so far


<style>
  h2{
      vw:80vw;

  }
  p{
      vmin:75vmin;
  }
</style>

<h2>Importantus Ipsum</h2>
<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 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/make-typography-responsive/

1 Like

some problems here.
The instructions say:

Set the width of the h2 tag to 80% of the viewport’s width and the width of the paragraph as 75% of the viewport’s smaller dimension.

So pay attention to “Set the width” When we set the width we write something like this:

width: 80vw;

3 Likes

Thank you. I think the problem I kept running into was the example in the challenge has:

vw: 10vw

so I thought it would be written something like:

h2 {width: {vw: 80vw}}

I see that I was mistaken now. Thank you for pointing out that specific spot on the instructions. Doing Markup Language is helping me improve my close reading skills!

1 Like