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 trialJacob Hopkins
7,310 PointsNext, target .photo. Use a 3D transform function to rotate .photo 30 degrees on the Y-axis only. What am I missing?
What am I doing wrong?
/* Complete the challenge by writing CSS below */
.wrapper {
perspective: 600px;
transform-style: preserve-3d;
}
.photo {
transform: rotate3d(0, 30deg, 0);
}
<!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>
1 Answer
Belve Marks
7,332 Pointsyour transform gets one more argument: rotate3d(x, y, z, a). The first three arguments are the axes you want to rotate, the last argument is the angle. Try
transform: rotate3d(0, 1, 0, 30deg);
Jacob Hopkins
7,310 PointsJacob Hopkins
7,310 PointsThank you! I was so stuck on this.
Robbie Thomas
31,093 PointsRobbie Thomas
31,093 PointsI did the same thing and it told me no, but perhaps I was missing the semi-colon.