Created
August 1, 2012 16:29
-
-
Save rd13/3228477 to your computer and use it in GitHub Desktop.
TR Inset Shadow CSS
This file contains 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
/* 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