Files

28 lines
467 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Use the CSS Transform Property skewY to Skew an Element Along the Y-Axis
---
## Use the CSS Transform Property skewY to Skew an Element Along the Y-Axis
### Solution
2018-10-12 15:37:13 -04: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>
2018-10-12 15:37:13 -04:00
<div id="top"></div>
<div id="bottom"></div>
```