Help me solve this problem

The task say that i should give padding to red-box class 1,5em, and i have tried two things

  1. padding :1,5 em;
    2.padding: 1,5em 1,5 em 1,5em 1,5 em;

    and the code doesn’t work, the code:

<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: red;
  padding:1,5em;
  margin: 20px 40px 20px 40px;

}

.green-box {
  background-color: green;
  margin: 20px 40px 20px 40px;
}
</style>
<h5 class="injected-text">margin</h5>

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

Challenge: Understand Absolute versus Relative Units

Link to the challenge:

CSS uses decimal instead of comma, so it should be 1.5em instead of 1,5em.

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.

You can also 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 (’).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.