<div id="top"></div> <div id="bottom"></div>
div {
70%;
height: 100px;
margin:50px auto;
}
1.使用transform
属性,沿着X轴将id为top的元素倾斜24度。
#top {
background-color: blue;
transform: skewX(24deg);
}
2.使用transform
属性,沿着Y轴将id为bottom的元素倾斜24度。
#bottom {
background-color: red;
transform: skewY(24deg);
}