Created
April 25, 2012 23:18
-
-
Save lunaru/2494350 to your computer and use it in GitHub Desktop.
CSS Box with Arrow and Dropshadow
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
/* Core CSS */ | |
#box | |
{ | |
background: white; | |
-webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
-moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; | |
} | |
#box-inner | |
{ | |
background: white; | |
margin-top: -50px; | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; | |
/* transform z-index hack */ | |
-moz-transform: rotate(0deg); | |
-webkit-transform: rotate(0deg); | |
-o-transform: rotate(0deg); | |
-ms-transform: rotate(0deg); | |
transform: rotate(0deg); | |
} | |
#box:before | |
{ | |
content: ''; | |
position: relative; | |
margin-left: 25px; | |
top: -10px; | |
background: white; | |
display: block; | |
width: 50px; | |
height: 50px; | |
-webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
-moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3); | |
-moz-transform: rotate(45deg); | |
-webkit-transform: rotate(45deg); | |
-o-transform: rotate(45deg); | |
-ms-transform: rotate(45deg); | |
transform: rotate(45deg); | |
} | |
/* styles for display purposes. Not necessary */ | |
body | |
{ | |
background: #dedede; | |
} | |
#box | |
{ | |
margin: 50px auto; | |
width: 400px; | |
} | |
#box-inner | |
{ | |
padding: 50px; | |
font-size: 25px; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- the good stuff --> | |
<div id="box"> | |
<div id="box-inner"> | |
"If the facts don't fit the theory, change the facts." | |
- Albert Einstein | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment