" The element with id bottom should be skewed by 24 degrees along its X-axis."
I can’t figure out what is wrong here. It has to be bugged right? I even looked at the answer through the get help button and its exactly the same.
<style>
div {
width: 70%;
height: 100px;
margin: 50px auto;
}
#top {
background-color: red;
}
#bottom {
background-color: blue;
transform: skewx(24deg);
}
</style>
<div id="top"></div>
<div id="bottom"></div>