Skip to content

Instantly share code, notes, and snippets.

@7cc
Created August 6, 2014 09:42
Show Gist options
  • Select an option

  • Save 7cc/052361921f651fa9e379 to your computer and use it in GitHub Desktop.

Select an option

Save 7cc/052361921f651fa9e379 to your computer and use it in GitHub Desktop.
CSS background
/*-----------------
* 色に関しては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