Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Last active August 29, 2015 14:01
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 pbojinov/73d10e5ca9e4ac2d3e8d to your computer and use it in GitHub Desktop.
Save pbojinov/73d10e5ca9e4ac2d3e8d to your computer and use it in GitHub Desktop.
double inner box shadow
<!DOCTYPE html>
<html>
<head>
<title>box shadow</title>
<style>
.item {
background: orange;
border: solid 1px blue;
box-shadow: inset 0 0 0 1px red, inset 0 0 0 2px green; /* nesting inset shadow*/
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<div class="item">&nbsp;</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment