Files
30-seconds-of-code/snippets/gradient-text.md
Angelos Chalaris 2fbd3e0737 Update format
2020-04-30 13:21:04 +03:00

25 lines
647 B
Markdown

---
title: Gradient text
tags: visual,intermediate
---
Gives text a gradient color.
- `background: -webkit-linear-gradient(...)` gives the text element a gradient background.
- `webkit-text-fill-color: transparent` fills the text with a transparent color.
- `webkit-background-clip: text` clips the background with the text, filling the text with the gradient background as the color.
- Uses non-standard properties.
```html
<p class="gradient-text">Gradient text</p>
```
```css
.gradient-text {
background: linear-gradient(#70D6FF, #00072D);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
font-size: 32px;
}
```