Files
freeCodeCamp/curriculum/challenges/russian/01-responsive-web-design/basic-css/add-a-negative-margin-to-an-element.russian.md
Iryna Moiseieva c432be48b2 Exposed correct cases and matching words in Russian (#23062)
- Change titles on russian
- correct matching words in russian
- Exposed correct cases for russian.
2018-10-31 21:29:01 +04:00

87 lines
2.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bad87fee1348bd9aedf08823
title: Add a Negative Margin to an Element
challengeType: 0
guideUrl: 'https://russian.freecodecamp.org/guide/certificates/add-a-negative-margin-to-an-element'
videoUrl: ''
localeTitle: Добавить отрицательную маржу к элементу
---
## Описание
<section id="description"> Свойство элемента <code>margin</code> контролирует объем пространства (отступы) между границей элемента, т.е. <code>border</code> и окружающими элементами. Если вы установите элементу отрицательное значение <code>margin</code>, то размер элемента увеличится. </section>
## Инструкции
<section id="instructions"> Попытайтесь установить отрицательное значение <code>margin</code>, так же как установлено подобное значению для красного квадрата. Измените <code>margin</code> синего квадрата на <code>-15px</code>, чтобы он заполнил всю горизонтальную ширину желтой рамки вокруг него. </section>
## Тесты
<section id='tests'>
```yml
tests:
- text: Ваш класс <code>blue-box</code> должен установить для элемента <code>margin</code> отступ в размере <code>-15px</code>.
testString: 'assert($(".blue-box").css("margin-top") === "-15px", "Your <code>blue-box</code> class should give elements <code>-15px</code> of <code>margin</code>.");'
```
</section>
## Испытание
<section id='challengeSeed'>
<div id='html-seed'>
```html
<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>
```
</div>
</section>
## Решение
<section id='solution'>
```js
// впишите ваш код решения
```
</section>