What is wrong with this coding

hi,
please view this what am i doing wrong?

For us to help you, you need to share your code, tell us what you’re trying to do, and explain what problems or questions you have.

<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: 20px 40px 20px 40px;

  }

  .red-box {

    background-color: crimson;

    color: #fff;

    margin: 20px 40px 20px 40px;

  }

  .blue-box {

    background-color: blue;

    color: #fff;

    margin: 40px 20px 20px 4

    0px;

  }

</style>

<h5 class="injected-text">margin</h5>

<div class="box yellow-box">

  <h5 class="box red-box">padding</h5>

  <h5 class="box blue-box">padding</h5>

</div><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: 20px 40px 20px 40px;
  }

  .red-box {
    background-color: crimson;
    color: #fff;
    margin: 20px 40px 20px 40px;
  }

  **.blue-box {**
**    background-color: blue;**
**    color: #fff;**
**    margin: 40px 20px 20px 4**
**    0px;**
**  }**
</style>
<h5 class="injected-text">margin</h5>

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

(the blue-box is the issue cant pass this stage, have watched the tutorial video)
thank

there is an extra space in 40px. You wrote 4 0px.
Don’t know if that’s the only issue though.

1 Like

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

Please use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks are not single quotes.

markdown_Forums

okay................. thank you