Created
July 10, 2012 18:47
-
-
Save rrguntaka/3085469 to your computer and use it in GitHub Desktop.
rounded corner box with shadow HTML template
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>Page 1</title> | |
<style type="text/css"> | |
.roundContainer { | |
box-shadow:0px 0px 70px #222; | |
-moz-box-shadow:0px 0px 70px #222; | |
-webkit-box-shadow:0px 0px 70px #222; | |
border-radius: 15px; | |
-moz-border-radius: 15px; | |
-webkit-border-radius: 15px; | |
background-color:#fff; | |
margin:0px auto; | |
border-left:2px solid #fff; | |
border-right:2px solid #fff; | |
} | |
</style> | |
</head> | |
<body> | |
<div style="width:986px;height: 500px;" class="roundContainer"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice looking box. How do I several on a page in a responsive layout? Also text styling within with a decent border?