Created
August 27, 2012 18:17
-
-
Save rrguntaka/3491028 to your computer and use it in GitHub Desktop.
Layered Box with Shadow CSS3
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
<html> | |
<head> | |
<title></title> | |
<style> | |
#example1 { | |
box-shadow: 5px 5px 15px 3px #999; | |
width: 200px; | |
padding: 2px 10px; | |
background-color: #F1F1F1; | |
} | |
</style> | |
</head> | |
<body> | |
<pre id="example1"> | |
public static void main(){ | |
public void test1(){ | |
anotherFunc(); | |
} | |
} | |
</pre> | |
<!-- reference: http://www.css3.info/preview/box-shadow/ --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment