Files
freeCodeCamp/curriculum/challenges/russian/01-responsive-web-design/basic-css/add-a-negative-margin-to-an-element.russian.md

2.7 KiB
Raw Blame History

id, title, challengeType, videoUrl, forumTopicId, localeTitle
id title challengeType videoUrl forumTopicId localeTitle
bad87fee1348bd9aedf08823 Add a Negative Margin to an Element 0 https://scrimba.com/c/cnpyGs3 16166 Добавить отрицательные поля к элементу

Description

Значение margin (поле) элемента контролирует объем пространства между значением border (границей) элемента и окружающими элементами. Если вы установите значение margin отрицательным, то размер элемента увеличится.

Instructions

Попытайтесь установить значение margin отрицательным, как у красного окна. Установите margin синего окна равным -15px, чтобы он заполнил всю горизонтальную ширину желтой рамки вокруг него.

Tests

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

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: -15px;
  }

  .blue-box {
    background-color: blue;
    color: #fff;
    padding: 20px;
    margin: 20px;
  }
</style>

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

Solution

<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: -15px;
  }

  .blue-box {
    background-color: blue;
    color: #fff;
    padding: 20px;
    margin: 20px;
    margin-top: -15px;
  }
</style>

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