body {
background-color: burlywood;
/* your comment */
}
h1, h2, p {
text-align: center;
}
div {
width: 300px;
}
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?
Thanks a lot it helped me !
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.