Created
September 12, 2013 03:09
-
-
Save lionhylra/6532673 to your computer and use it in GitHub Desktop.
often used css
阴影 透明 背景图 模糊
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
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