Learn Intermediate CSS by Building a Cat Painting - Step 5

Tell us what’s happening:

its telling me to have a body selector but i already have one

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>fCC Cat Painting</title>
    <link rel="stylesheet" href="./styles.css">
</head>
<body></body>
</html>
/* file: styles.css */
* {
  box-sizing: border-box;

/* User Editable Region */

body {
  background-color: #c9d2fc;
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Intermediate CSS by Building a Cat Painting - Step 5

Hi there and welcome to our community!

You do have a body selector, but you have also lost the closing curly bracket from the selector above it. Easy mistake to make and one which crops up a lot!

1 Like