--- id: 587d7791367417b2b2512ab5 title: Adjust the Height of an Element Using the height Property challengeType: 0 videoUrl: '' localeTitle: ضبط ارتفاع عنصر باستخدام خاصية الارتفاع --- ## Description
يمكنك تحديد ارتفاع عنصر باستخدام خاصية height في CSS، على غرار خاصية width. في ما يلي مثال يغير ارتفاع الصورة إلى 20 بكسل:
img {
  height: 20px;
}
## Instructions
إضافة خاصية height إلى علامة h4 وتعيينها إلى 25 بكسل.
## Tests
```yml tests: - text: يجب تغيير التعليمات البرمجية الخاصة بك الخاصية height h4 إلى قيمة 25 بكسل. testString: 'assert($("h4").css("height") == "25px", "Your code should change the h4 height property to a value of 25 pixels.");' ```
## 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 ```