Solution step 23 CSS section about comment

body {

background-color: burlywood;

/* your comment */

}

h1, h2, p {

text-align: center;

}

div {

width: 300px;

}

The instructions are asking you to comment out the code with the background-color property and value.

That’s a very specific programming term - to comment something out means to put it inside the opening and closing comment tokens so that it won’t be executed.

Like this

/* code to be commented out */

Does that help?

1 Like

Thanks a lot it helped me !

1 Like

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