Skip to content

Instantly share code, notes, and snippets.

@lionhylra
Created September 12, 2013 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lionhylra/6532673 to your computer and use it in GitHub Desktop.
Save lionhylra/6532673 to your computer and use it in GitHub Desktop.
often used css 阴影 透明 背景图 模糊
div{
/*background img*/
background-image: url(page_element/background.png);
background-repeat: repeat;
/*text shadow*/
text-shadow: 1px 0 0px #FF9BD4, 0 1px 0px #FF9BD4, 0 -1px 0px #FF9BD4, -1px 0 0px #FF9BD4;
/*tansparency*/
filter:alpha(Opacity=80);
-moz-opacity:0.7;
opacity: 0.7;
/*blur*/
-webkit-filter: blur(10px);
filter: blur(10px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment