freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/basic-css/adjust-the-margin-of-an-ele...

2.0 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08822 Adjust the Margin of an Element 0 ضبط هامش عنصر

Description

عنصر في margin يتحكم في مقدار المسافة بين عنصر في border والعناصر المحيطة بها. هنا ، يمكننا ملاحظة أن الصندوق الأزرق والمربع الأحمر متداخلان داخل المربع الأصفر. لاحظ أن المربع الأحمر به margin أكبر من المربع الأزرق ، مما يجعله يبدو أصغر. عند زيادة margin الصندوق الأزرق ، سيزيد من المسافة بين حدوده والعناصر المحيطة به.

Instructions

غيّر margin المربع الأزرق ليطابق ذلك المربع الأحمر.

Tests

tests:
  - text: ''
    testString: 'assert($(".blue-box").css("margin-top") === "20px", "Your <code>blue-box</code> class should give elements <code>20px</code> of <code>margin</code>.");'

Challenge Seed

<style>
  .injected-text {
    margin-bottom: -25px;
    text-align: center;
  }

  .box {
    border-style: solid;
    border-color: black;
    border-width: 5px;
    text-align: center;
  }

  .yellow-box {
    background-color: yellow;
    padding: 10px;
  }

  .red-box {
    background-color: crimson;
    color: #fff;
    padding: 20px;
    margin: 20px;
  }

  .blue-box {
    background-color: blue;
    color: #fff;
    padding: 20px;
    margin: 10px;
  }
</style>
<h5 class="injected-text">margin</h5>

<div class="box yellow-box">
  <h5 class="box red-box">padding</h5>
  <h5 class="box blue-box">padding</h5>
</div>

Solution

// solution required