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