Tell us what’s happening:
There is a bug in this specific practice question. when you type transform : skewX(24deg). it complete test as we know it’s a correct sentence but it does not prompt to submit. while when we ut transform: skewX(24deg). it works well.
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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36
Challenge Information:
Applied Visual Design - Use the CSS Transform Property skewX to Skew an Element Along the X-Axis