--- id: 587d78b1367417b2b2512b0c title: Make Typography Responsive challengeType: 0 videoUrl: 'https://scrimba.com/p/pzrPu4/crzN7T8' forumTopicId: 301141 dashedName: make-typography-responsive --- # --description-- Instead of using `em` or `px` to size text, you can use viewport units for responsive typography. Viewport units, like percentages, are relative units, but they are based off different items. Viewport units are relative to the viewport dimensions (width or height) of a device, and percentages are relative to the size of the parent container element. The four different viewport units are: Here is an example that sets a `body` tag to 30% of the viewport's width. ```css body { width: 30vw; } ``` # --instructions-- 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. # --hints-- Your `h2` tag should have a `width` of 80vw. ```js assert( __helpers .removeCssComments(code) .match(/h2\s*?{\s*?width:\s*?80vw;\s*?}/g) ); ``` Your `p` tag should have a `width` of 75vmin. ```js assert( __helpers .removeCssComments(code) .match(/p\s*?{\s*?width:\s*?75vmin;\s*?}/g) ); ``` # --seed-- ## --seed-contents-- ```html

Importantus Ipsum

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.

``` # --solutions-- ```html

Importantus Ipsum

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.

```