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

2.1 KiB

id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aedf08823 Aggiungere un margine negativo a un elemento 0 https://scrimba.com/c/cnpyGs3 16166 add-a-negative-margin-to-an-element

--description--

Il margin di un elemento controlla la quantità di spazio tra il suo border e gli elementi circostanti.

Se si imposta il margin di un elemento ad un valore negativo, l'elemento si allargherà.

--instructions--

Prova a impostare il margin ad un valore negativo come quello del riquadro rosso.

Imposta il margin del riquadro blu a -15px, in modo che riempia l'intera larghezza orizzontale del riquadro giallo intorno ad esso.

--hints--

La tua classe blue-box dovrebbe dare -15px di margin agli elementi.

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>