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 Transforms CSS Transforms Challenge

Marcus Deluca
seal-mask
.a{fill-rule:evenodd;}techdegree
Marcus Deluca
Front End Web Development Techdegree Student 9,071 Points

preview works but keeps saying its wrong

the challenge says I am using the wrong transform function in order to move the element up, I tried translatey(-100%) as well as translate(0, 100%). both showed it worked in the preview but they both keep saying that I am using the wrong function.

style.css
/* overlay and img transitions ---------- */

.overlay,
img  {
    transition: transform .6s ease-out;
}

/* overlay and img transforms ---------- */

.photo:hover .overlay {
transform: translate(0, -100%);
}
.photo:hover img {

}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>Transform Challenge</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">

        <div class="photo">
          <img src="1.jpg" alt="Big Sur">
          <div class="overlay">
              <h3>Big Sur, California</h3>
              <p>Big Sur is a rugged stretch of California's central coast between Carmel and San Simeon.</p>
            </div>
        </div>

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

1 Answer

While transform: translate(0, -100%); is a correct option, the challenge seems to be explicitly wanting you to use the translateY() function. And, even though transform: translatey(-100%) works in the preview, the test rule for the challenge seems to be case sensitive and wants the 'Y' to be capitalized, so use transform: translateY(-100%); and it should pass.