--- id: 587d7791367417b2b2512ab4 title: Adjust the Width of an Element Using the width Property challengeType: 0 videoUrl: '' localeTitle: ضبط عرض عنصر باستخدام خاصية العرض --- ## Description
يمكنك تحديد عرض عنصر باستخدام خاصية width في CSS. يمكن إعطاء القيم في وحدات الطول النسبي (مثل em) ، أو وحدات الطول المطلقة (مثل px) ، أو كنسبة مئوية من عنصر الأصل الذي يحتوي عليه. في ما يلي مثال يغير عرض الصورة إلى 220 بكسل:
img {
العرض: 220 بكسل ؛
}
## Instructions
إضافة خاصية width للبطاقة بأكملها وتعيينها إلى قيمة مطلقة تبلغ 245 بكسل. استخدم فئة fullCard لتحديد العنصر.
## Tests
```yml tests: - text: يجب تغيير التعليمات البرمجية الخاصة بك الخاصية width للبطاقة إلى 245 بكسل باستخدام محدد فئة fullCard . testString: 'assert(code.match(/.fullCard\s*{[\s\S][^}]*\n*^\s*width\s*:\s*245px\s*;/gm), "Your code should change the width property of the card to 245 pixels by using the fullCard class selector.");' ```
## Challenge Seed
```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```
## Solution
```js // solution required ```