diff --git a/README.md b/README.md index 0c9fe25..18d8140 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/). For a steady stream of TILs from a variety of rocketeers, checkout [til.hashrocket.com](https://til.hashrocket.com/). -_554 TILs and counting..._ +_555 TILs and counting..._ --- @@ -79,6 +79,7 @@ _554 TILs and counting..._ ### CSS +- [Lighten And Darken With CSS Brightness Filter](css/lighten-and-darken-with-css-brightness-filter.md) - [Lighten And Darken With SCSS](css/lighten-and-darken-with-scss.md) ### Devops diff --git a/css/lighten-and-darken-with-css-brightness-filter.md b/css/lighten-and-darken-with-css-brightness-filter.md new file mode 100644 index 0000000..3543b24 --- /dev/null +++ b/css/lighten-and-darken-with-css-brightness-filter.md @@ -0,0 +1,31 @@ +# Lighten And Darken With CSS Brightness Filter + +CSS has a `filter` property that can be used with a variety of filter +functions. One of them is the `brightness()` filter. By feeding a percentage +less than `100%` to `brightness()`, the target element will be made darker. +Inversely, feeding a percentage greater than `100%` to `brightness()` will +make the element brighter. + +```css +.brighter-span { + filter: brightness(150%); +} + +.darker-span { + filter: brightness(50%); +} +``` + +
See the Pen OjKJpa by Josh +Branchaud (@jbranchaud) on CodePen.
+ + +See this [CSS Tricks Article on the `filter` +property](https://css-tricks.com/almanac/properties/f/filter/) for more +details. Check out the browser support story +[here](http://caniuse.com/#feat=css-filters).