/* file: styles.css */
body {
/* User Editable Region */
background-color: burlywood;
/* User Editable Region */
}
h1, h2, p {
text-align: center;
}
div {
width: 300px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.64
Challenge: Learn Basic CSS by Building a Cafe Menu - Step 22
So, you can see the example the challenge gives you. To make a comment you use /* your comment goes here. */ so your background style needs to go between the /* */
This is the content of your comment. You have the style in the challenge already, you need to add the comment around that background-color style. I used the example in my last post of how it should look like.
/* goes in front of the background style
*/ goes after the color