freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/set-the-line-height-of-para...

1.7 KiB

id title challengeType videoUrl forumTopicId
587d781d367417b2b2512ac5 Set the line-height of Paragraphs 0 https://scrimba.com/c/crVWdcv 301070

Description

CSS offers the line-height property to change the height of each line in a block of text. As the name suggests, it changes the amount of vertical space that each line of text gets.

Instructions

Add a line-height property to the p tag and set it to 25px.

Tests

tests:
  - text: Your code should set the <code>line-height</code> of the <code>p</code> tag to 25 pixels.
    testString: assert($('p').css('line-height') == '25px');

Challenge Seed

<style>
  p {
    font-size: 16px;

  }
</style>
<p>
  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>

Solution

<style>
  p {
    font-size: 16px;
    line-height: 25px;
  }
</style>
<p>
  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>