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

1.5 KiB

id title challengeType videoUrl localeTitle
587d781d367417b2b2512ac5 Set the line-height of Paragraphs 0 قم بتعيين ارتفاع سطر الفقرات

Description

توفر CSS خاصية line-height لتغيير ارتفاع كل سطر في كتلة نص. كما يوحي الاسم ، فإنه يغير مقدار المساحة العمودية التي يحصل عليها كل سطر من النص.

Instructions

أضف خاصية line-height إلى علامة p واضبطها على 25 بكسل.

Tests

tests:
  - text: يجب أن تحدد الشفرة <code>line-height</code> علامة <code>p</code> إلى 25 بكسل.
    testString: 'assert($("p").css("line-height") == "25px", "Your code should set the <code>line-height</code> of the <code>p</code> tag to 25 pixels.");'

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

// solution required