3 buenos dias realice el desafio esta correcto pero no me deja continuar alguien sabe porque pasa esto 100/5000 good morning I made the challenge is correct but it doesn't let me continue someone knows why this happens

Tell us what’s happening:

Your code so far


<style>
div {
  width: 70%;
  height: 100px;
  margin:  50px auto;
}
#top {
  background-color: red;
}
#bottom {
  transform: skewx( 24deg);
  background-color: blue;

}
</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/79.0.3945.130 Safari/537.36.

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

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/applied-visual-design/use-the-css-transform-property-skewx-to-skew-an-element-along-the-x-axis

Welcome to the forum, @calbodragon

I tested your code and found that you had an extra space inside parentheses as well as x in lowercase, skewX is supposed to be used!

Hope it helps! :slight_smile:

1 Like