Skip to content

Latest commit

 

History

History
95 lines (59 loc) · 2.33 KB

css-tricks.md

File metadata and controls

95 lines (59 loc) · 2.33 KB

Change the font #f03c15

font-family: Arial;


Change the background to image #c5f015

background-image: url(http://www.css-tricks.com/examples/stripe.png);

Repeat the background image background-repeat: repeat;


Change the background to a color #1589F0 background-color: lightblue;


Change the background to a gradient #f03c15 background: linear-gradient(red, yellow);


Change the text color #f03c15 color: pink;


Make all the text lowercase #1589F0 text-transform: lowercase;


Make all the text uppercase #c5f015 text-transform: uppercase;


Completely remove an element from the page #1589F0 display: none;


Add a text shadow #f03c15 text-shadow: 3px 2px red;


Change Opacity #c5f015 opacity: 0.5;


Rotate! #c5f015

transform: rotate(20deg);


Skew #1589F0 transform: skewX(20deg);


Add a border #f03c15 border: 2px solid #73AD21;


Add rounded corners #c5f015 border-radius: 25px;


Skew and Scale #1589F0

transform:skew(60deg, -30deg) scaleY(.66667);


Add a box shadow #f03c15

box-shadow: 10px 10px 5px grey;


Add a blur #c5f015 filter: blur(5px);


Grayscale #1589F0

filter: grayscale(100%);


Drop shadow #c5f015 filter: drop-shadow(16px 16px 20px red) invert(75%);