Link Search Menu Expand Document

Use the CSS Transform Property skewY to Skew an Element Along the Y-Axis

Summary

  • The skewY() function of the transform property is used to skew an element along the y-axis by a given degree.

Final Code

<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>