Learning the basics of CSS: Create a cafe menu - Step 22

Let’s explain the situation: CSS Step 22 I can’t write a comment out.

コメントアウトが書けません。CSSは特にいじっていません。コメントの場所も変えてみたのですが、なかなか改善しません。

Current code background-color: burlywood; /* comment here */

<!-- file: index.html -->
<! DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cafe Menu</title>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<div id="menu">
<main>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
<section>
<h2>Coffee</h2>
</section>
</main>
</div>
</body>
</html>
/* file: styles.css */
body {

/* User Editable Region */

background-color: burlywood;

/* comment here */

/* User Editable Region */

}

h1, h2, p {
text-align: center;
}

#menu {
width: 300px;
}

Browser information:

User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15

Challenge information:

Learning the basics of CSS: Create a cafe menu - Step 22
https://www.freecodecamp.org/japanese/learn/2022/responsive-web-design/learn-basic-css-by-building-a -cafe-menu/step-22

Hi! You have to put comment signs before and after the given line of code

/* line of code */

Oh!!!
Thank you!!!

I appreciate it very much!!! :slightly_smiling_face: :grin: :grinning:

1 Like