Skip to content

Instantly share code, notes, and snippets.

@rd13
Created August 1, 2012 16:29
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 rd13/3228477 to your computer and use it in GitHub Desktop.
Save rd13/3228477 to your computer and use it in GitHub Desktop.
TR Inset Shadow CSS
/* http://jsfiddle.net/KtPdt/8/ */
td {
background-color: rgba(255, 255, 255, 0.8);
-webkit-box-shadow: inset 0px 11px 8px -10px orange,
inset 0px -11px 8px -10px orange;
padding: 5px;
}
td:first-child {
-webkit-box-shadow: inset 10px 11px 8px -10px orange,
inset 10px -11px 8px -10px orange;
}
td:last-child {
-webkit-box-shadow: inset -10px 11px 8px -10px orange,
inset -10px -11px 8px -10px orange;
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment