1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Add Style A Background With A Linear Gradient as a css til

This commit is contained in:
jbranchaud
2018-11-20 10:49:28 -06:00
parent 7de68bea52
commit d5798308b4
2 changed files with 27 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/). [til.hashrocket.com](https://til.hashrocket.com/).
_723 TILs and counting..._ _724 TILs and counting..._
--- ---
@@ -96,6 +96,7 @@ _723 TILs and counting..._
- [Lighten And Darken With SCSS](css/lighten-and-darken-with-scss.md) - [Lighten And Darken With SCSS](css/lighten-and-darken-with-scss.md)
- [Make A Block Of Text Respect New Lines](css/make-a-block-of-text-respect-new-lines.md) - [Make A Block Of Text Respect New Lines](css/make-a-block-of-text-respect-new-lines.md)
- [Parameterized SCSS Mixins](css/parameterized-scss-mixins.md) - [Parameterized SCSS Mixins](css/parameterized-scss-mixins.md)
- [Style A Background With A Linear Gradient](css/style-a-background-with-a-linear-gradient.md)
### Devops ### Devops

View File

@@ -0,0 +1,25 @@
# Style A Background With A Linear Gradient
The
[`linear-gradient`](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient)
function in its simplest form can be used to style the background of an
element with a vertical, linear gradient between two colors.
<p data-height="251" data-theme-id="0" data-slug-hash="pQpypW"
data-default-tab="result" data-user="jbranchaud" data-pen-title="pQpypW"
class="codepen">See the Pen <a
href="https://codepen.io/jbranchaud/pen/pQpypW/">pQpypW</a> by Josh
Branchaud (<a href="https://codepen.io/jbranchaud">@jbranchaud</a>) on <a
href="https://codepen.io">CodePen</a>.</p>
<script async src="https://static.codepen.io/assets/embed/ei.js"></script>
Here is what the CSS looks like:
```css
.container {
background: linear-gradient(#00449e, #e66465);
}
```
The background of any element with the `container` class will be styled with
a linear gradient that transitions from `#00449e` to `#e66465`.