vh and vw

The vh and vw units are based on the user's viewport height and width. Let's take a look at these units.

We'll cover the following...

Responsive design largely depends on percentage values. For instance it’s easy to size an element’s width like so:

Press + to interact
.my-element {
width: 50%
}

In many cases, percentages just aren’t satisfying.

Like the em which scales based on the parent font-size, the width ...