--- id: 587d78a6367417b2b2512adc title: Use the CSS Transform Property skewY to Skew an Element Along the Y-Axis challengeType: 0 videoUrl: '' localeTitle: استخدم خاصية تحويل CSS skewY إلى Skew an Element على طول المحور ص --- ## Description
وبالنظر إلى أن وظيفة skewX() العنصر المحدد على طول المحور X بواسطة درجة معينة ، فلا غرابة في أن الخاصية skewY() عنصرًا على المحور Y (الرأسي).
## Instructions
إمزج العنصر بمعرف top -10 درجات على طول المحور ص باستخدام خاصية transform .
## Tests
```yml tests: - text: يجب أن يتم تحريف العنصر ذو top الهوية بمقدار -10 درجات على طول المحور Y. testString: 'assert(code.match(/#top\s*?{\s*?.*?\s*?transform:\s*?skewY\(-10deg\);/g), "The element with id top should be skewed by -10 degrees along its Y-axis.");' ```
## Challenge Seed
```html
```
## Solution
```js // solution required ```