Created
May 12, 2014 07:41
-
-
Save carlosrojaso/5cd3aac92c946031772d to your computer and use it in GitHub Desktop.
CSS3 The box-shadow
This file contains hidden or 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
<!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