2018-09-30 23:01:58 +01:00
---
id: 587d78a6367417b2b2512adc
title: Use the CSS Transform Property skewY to Skew an Element Along the Y-Axis
challengeType: 0
videoUrl: 'https://scrimba.com/c/c2MZ2uB'
2019-08-05 09:17:33 -07:00
forumTopicId: 301075
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Given that the < code > skewX()< / code > function skews the selected element along the X-axis by a given degree, it is no surprise that the < code > skewY()< / code > property skews an element along the Y (vertical) axis.
< / section >
## Instructions
< section id = 'instructions' >
Skew the element with the id of < code > top< / code > -10 degrees along the Y-axis by using the < code > transform< / code > property.
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: The element with id < code > top</ code > should be skewed by -10 degrees along its Y-axis.
2019-07-24 02:42:26 -07:00
testString: assert(code.match(/#top \s*?{\s*?.*?\s*?transform:\s*?skewY\(-10deg\);/g));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'html-seed' >
```html
< style >
2018-10-08 01:01:53 +01:00
div {
2018-09-30 23:01:58 +01:00
width: 70%;
height: 100px;
margin: 50px auto;
}
#top {
background-color: red;
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
}
#bottom {
background-color: blue;
transform: skewX(24deg);
}
< / style >
< div id = "top" > < / div >
< div id = "bottom" > < / div >
```
< / div >
< / section >
## Solution
< section id = 'solution' >
2019-04-29 01:13:38 +07:00
```html
< style >
div {
width: 70%;
height: 100px;
margin: 50px auto;
}
#top {
background-color: red;
transform: skewY(-10deg);
}
#bottom {
background-color: blue;
transform: skewX(24deg);
}
< / style >
< div id = "top" > < / div >
< div id = "bottom" > < / div >
2018-09-30 23:01:58 +01:00
```
< / section >