Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Transitions and Transforms Getting Started with CSS Transitions Transitioning Multiple Properties

Write a declaration that will transition only the color and background values of .content.

Write a declaration that will transition only the color and background values of .content.

Hello, just checked my code in the Preview section and the inverted colors are being shown, but I'm still getting bummer on my results. Can someone help me on this question.

My code:

.content { color: #f0f0f0; background: #fff; transition-property: color, background; transition-duration: .4s, .4s; }

style.css
/* Complete the challenge by writing CSS below */

.content {
  color: #f0f0f0;
  background: #fff;
  transition-property: color, background;
  transition-duration: .4s, .4s;
}

.invert:checked ~ .content {
    color: #fff;
    background: #373737;
}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>CSS Transitions</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container clearfix">

        <input type="checkbox" id="invert" class="invert"><label for="invert">Invert Colors</label>

        <div class="content">
            <h2>Bear claw</h2>
            <p>Wafer apple pie sugar plum lollipop jelly-o croissant. Jelly beans bear claw fruitcake sugar plum. Bear claw oat cake croissant powder pie sweet roll powder gummies. Chocolate apple pie pudding pie sesame snaps. Danish wafer chupa chups apple pie. Gingerbread pastry candy canes. Pie bonbon candy chocolate cake dessert.</p>
        </div>

    </div>
</body>
</html>

6 Answers

Billy Bellchambers
Billy Bellchambers
21,689 Points

Hi Jason.

I've just looked at the challenge you are so close.

Take care to read questions carefully and give it exactly what its asking for - you need to pay particular attention to the transition-durations you have set. Give it another look.

If your still struggling to see the problem find solution below

/* Complete the challenge by writing CSS below */

.content {
  transition-property: color, background;
  transition-duration: 0.4s, 0.5s; /* note background duration of 0.5s not 0.4s as you had wrote */
}

.invert:checked ~ .content {
    color: #fff;
    background: #373737;
}

Hope that helps.

Happy coding

Billy Bellchambers
Billy Bellchambers
21,689 Points

The issue was resulting from the question asking for a transition duration of 0.5s for the background property however he had stated a value of 0.4s.

The code he wrote was perfectly valid. The issue was just not correct for the question.

Im confused so the only thing Jason did wrong was not have 0.4 or because he has the colors and background wrote in the code? Thank you.

Ahh i think i understand, thanks for getting back to me so quickly!

i don't understand the question

nor the answer you gave