--- id: 587d781c367417b2b2512abf title: Decrease the Opacity of an Element challengeType: 0 videoUrl: 'https://scrimba.com/c/c7aKqu4' --- ## Description
The opacity property in CSS is used to adjust the opacity, or conversely, the transparency for an item.
A value of 1 is opaque, which isn't transparent at all.
A value of 0.5 is half see-through.
A value of 0 is completely transparent.
The value given will apply to the entire element, whether that's an image with some transparency, or the foreground and background colors for a block of text.
## Instructions
Set the opacity of the anchor tags to 0.7 using links class to select them.
## Tests
```yml tests: - text: Your code should set the opacity property to 0.7 on the anchor tags by selecting the class of 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 ```