Skip to content

Instantly share code, notes, and snippets.

@cssoul
Created May 20, 2013 13:36
Show Gist options
  • Save cssoul/5612261 to your computer and use it in GitHub Desktop.
Save cssoul/5612261 to your computer and use it in GitHub Desktop.
利用径向渐变实现 不规则渐变阴影
.top-shadow {
width: 200px;
height: 200px;
}
.top-shadow:after {
content: "";
width: 100%;
height: 8px;
display: block;
background-image: -webkit-radial-gradient(center top,ellipse farthest-side , rgba(0, 0, 0, 0.3) , transparent);
background-repeat: no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment