Learn Intermediate CSS by Building a Cat Painting - Step 6

Tell us what’s happening:
What’s the issue here? I’ve tried various indentations in case it’s an issue with formatting but I must be missing something because this looks correct to me.

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>

<!-- User Editable Region -->

    
<body>
    <main>
        <div class="cat-head">
        </div>
    </main>

<!-- User Editable Region -->

</body>
</html>
/* file: styles.css */
* {
  box-sizing: border-box;
}

body {
  background-color: #c9d2fc;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/116.0

Challenge: Learn Intermediate CSS by Building a Cat Painting - Step 6

Link to the challenge:

Ya, looks right to me too. What hint are you getting?

“You should have a div element.”

Maybe try submitting from a different browser.
I was able to submit your code successfully on my system.

Sometimes if you have a browser extension installed that changes the styling on the page (such as dark mode) it can interfere with the tests and cause them to fail when they shouldn’t. I wouldn’t think that would be the case here but you never know. If you have such extensions installed then start disabling them to see if you can find the one that is causing problems. Otherwise, try a different, “clean” browser that doesn’t have any extensions.

Ah, I had one hidden extension I forgot to turn off. Thanks.