freeCodeCamp/curriculum/challenges/espanol/01-responsive-web-design/basic-css/add-a-negative-margin-to-an...

116 lines
2.0 KiB
Markdown
Raw Normal View History

---
id: bad87fee1348bd9aedf08823
title: Añade un margen negativo a un elemento
challengeType: 0
videoUrl: 'https://scrimba.com/c/cnpyGs3'
forumTopicId: 16166
dashedName: add-a-negative-margin-to-an-element
---
# --description--
El `margin` (margen) de un elemento controla la cantidad de espacio entre su `border` y los elementos que lo rodean.
Si estableces el `margin` de un elemento a un valor negativo, el elemento crecerá de tamaño.
# --instructions--
Intenta establecer el `margin` a un valor negativo como el de la caja roja.
Cambia el `margin` de la caja azul a `-15px` para que llene todo el ancho horizontal de la caja amarilla que lo rodea.
# --hints--
Tu clase `blue-box` debería dar a los elementos un `margin` de `-15px`.
```js
assert($('.blue-box').css('margin-top') === '-15px');
```
# --seed--
## --seed-contents--
```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>
```
# --solutions--
```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;
margin-top: -15px;
}
</style>
<div class="box yellow-box">
<h5 class="box red-box">padding</h5>
<h5 class="box blue-box">padding</h5>
</div>
```