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 Adding 3D Effects with CSS 3D Transforms Challenge

gioele bernardi
gioele bernardi
28,482 Points

Is my answer in the css correct?

for me the code seems correct, I don't know what can be wrong

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

.wrapper {
  perspective: 600px;
}

.photo {
  transform: rotateY(30deg)
}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>3D 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="wrapper">
        <img class="photo" src="1.jpg" alt="Dazzling Auroras">
    </div>

</body>
</html>

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! Your answer is partially correct. It would have the same effect as what they're asking for, but the challenge explicitly asks for the 3d version of the rotation. Take another look at the Bummer! message:

Bummer! Make sure you're using the 3D-specific function for rotations.

So this is what they're looking for:

.photo {
  transform: rotate3d(0, 1, 0, 30deg);
}

This is the rotate3d specific form of what you've written. The first three numbers will be either 0 or 1. A one indicates the axis that should be rotated on. The fourth and final number indicates the degrees.

Hope this helps! :sparkles:

gioele bernardi
gioele bernardi
28,482 Points

thanks a lot!! I really wasn't able to understand the problem