Created
August 6, 2014 09:42
-
-
Save 7cc/052361921f651fa9e379 to your computer and use it in GitHub Desktop.
CSS background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*----------------- | |
| * 色に関しては2つだけ | |
| * - color | |
| * - clip | |
| * 残りは画像に適用 | |
| -----------------*/ | |
| .bg { | |
| width: 200px; | |
| height: 200px; | |
| padding: 20px; | |
| background-color: blue; | |
| background-image: linear-gradient(90deg, orange 40%, white, green); | |
| /* background-blend-mode: exclusion; */ | |
| background-size: 50% 150px; /*[auto auto]*/ /*cover, contain*/ | |
| background-position: right bottom; /*[0% 0%]*/ /* 10px 30px */ | |
| background-origin: content-box; /*[padding-box]*/ | |
| background-clip: padding-box; | |
| background-repeat: no-repeat; /*[repeat]*/ | |
| background-attachment: local; /*[scroll]*/ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment