--- id: 587d781c367417b2b2512abf title: Decrease the Opacity of an Element challengeType: 0 videoUrl: '' localeTitle: تقليل تعتيم عنصر --- ## Description
يتم استخدام خاصية opacity في CSS لضبط العتامة ، أو العكس ، شفافية العنصر.
قيمة 1 معتمة ، وهي غير شفافة على الإطلاق.
القيمة 0.5 هي نصف شفاف.
القيمة 0 شفافة تمامًا.
سيتم تطبيق القيمة المقدمة على العنصر بأكمله ، سواء كانت هذه الصورة مع بعض الشفافية ، أو ألوان المقدمة والخلفية لكتلة من النص.
## Instructions
اضبط opacity علامات الإرساء على 0.7 باستخدام فئة links لتحديدها.
## Tests
```yml tests: - text: يجب أن تقوم التعليمة البرمجية بتعيين الخاصية opacity إلى 0.7 على علامات الربط عن طريق تحديد فئة links . testString: 'assert.approximately(parseFloat($(".links").css("opacity")), 0.7, 0.1, "Your code should set the opacity property to 0.7 on the anchor tags by selecting the class of links.");' ```
## Challenge Seed
```html

Alphabet


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

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