Skip to content

Instantly share code, notes, and snippets.

@moritamoriko
Created November 7, 2012 15:49
Show Gist options
  • Save moritamoriko/4032384 to your computer and use it in GitHub Desktop.
Save moritamoriko/4032384 to your computer and use it in GitHub Desktop.
box-shadow:
/*1pxのボーダーと半透明の白い線*/
/*BOXの下*/
border-bottom: rgba(0,0,0,0.3) 1px solid;
box-shadow: 0 1px 0 rgba(255,255,255,0.5); /* chrome、safari */
-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.5);  /* firefox */
-o-box-shadow: 0 1px 0 rgba(255,255,255,0.5);  /* OPERA */
-ms-box-shadow: 0 1px 0 rgba(255,255,255,0.5);  /* IE */
/*BOXの上*/
border-top: rgba(0,0,0,0.3) 1px solid;
box-shadow: 0 1px 0 rgba(255,255,255, .8) inset; /* chrome、safari */
-moz-box-shadow: 0 1px 0 rgba(255,255,255, .8) inset;  /* firefox */
-o-box-shadow: 0 1px 0 rgba(255,255,255, .8) inset;  /* OPERA */
-ms-box-shadow: 0 1px 0 rgba(255,255,255, .8) inset;  /* IE */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment