Skip to content

Instantly share code, notes, and snippets.

@carlosrojaso
Created May 12, 2014 07:41
Show Gist options
  • Save carlosrojaso/5cd3aac92c946031772d to your computer and use it in GitHub Desktop.
Save carlosrojaso/5cd3aac92c946031772d to your computer and use it in GitHub Desktop.
CSS3 The box-shadow
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:300px;
height:100px;
background-color:yellow;
box-shadow: 10px 10px 5px #888888;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment