Responsive Web Design Principles

Tell us what’s happening:
i cant understand the whole subject can anybody get me a short explanation about this,
Responsive Web Design Principles

Your code so far


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

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

Its very easy to understand:

vw = viewport width (The width of the visible area)
10vw = 10% of the visible area

vh = viewport height (The height of the visible area)
10vw = 10% of the visible area

if the viewport has a 100px height and 50px width then 10vmin is 10% of the width because the width is smaller than the height so if you do 10vmax it will be 10% of the height

thanks a lot Michael.

You’re welcome!:grin: