Hi there,it is been some days i didnot ask you questions guys.How are you?Would you like to show me some clue about this one ?I think I got the right answer (maybe wrong),I still cannot pass this one .THANKS FOR YOUR ATTETION。Good Day ^^

Tell us what’s happening:

Your code so far


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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362.

Challenge: Use the CSS Transform Property skewX to Skew an Element Along the X-Axis

Link to the challenge:

Hello~!

Your code works correctly, and you can see the blue rectangle skew. The tests are failing, however, because they are case sensitive. You have written skewx but the test looks for skewX. The X needs to be upper case. :slight_smile: