Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

CSS Transform Property: Level 13 Lesson 3

I'm not sure what to do. Please help! Thank you!

<!DOCTYPE html>
<html>
<head>
<title>CSS transform property</title>
<style>
div{
width: 150px;
height: 80px;
margin: 100px;
background-color: #4535aa;
color: white;
}

.remix
{
transform:rotate(120deg);
}

.skewed
{
transform:skew(45deg 15deg);
}

</style>
</head>
<body>
<div class="remix">Remix</div>
<div class="skew">Skew</div>
</body>
</html>
by

1 Answer

kshitijrana14
Try this one

<!DOCTYPE html>
<html>
<head>
<title>CSS transform property</title>
<style>
div{
width: 150px;
height: 80px;
margin: 100px;
background-color: #4535aa;
color: white;
}
.remix
{
transform:rotate(120deg) skew(45deg,15deg);
}

</style>
</head>
<body>
<div class="remix">Transform me!</div>
</body>
</html>

Login / Signup to Answer the Question.