2.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.0 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, forumTopicId, dashedName
| id | title | challengeType | videoUrl | forumTopicId | dashedName | 
|---|---|---|---|---|---|
| bad87fee1348bd9aedf08823 | Añade un margen negativo a un elemento | 0 | https://scrimba.com/c/cnpyGs3 | 16166 | 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.
assert($('.blue-box').css('margin-top') === '-15px');
--seed--
--seed-contents--
<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--
<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>