Created
April 14, 2015 12:48
-
-
Save digitalhydra/580d35e9c54a26b72ea7 to your computer and use it in GitHub Desktop.
css hexagon
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
.hex:before { | |
content: " "; | |
width: 0; height: 0; | |
border-bottom: 30px solid #6C6; | |
border-left: 52px solid transparent; | |
border-right: 52px solid transparent; | |
position: absolute; | |
top: -30px; | |
} | |
.hex { | |
margin-top: 30px; | |
width: 104px; | |
height: 60px; | |
background-color: #6C6; | |
position: relative; | |
} | |
.hex:after { | |
content: ""; | |
width: 0; | |
position: absolute; | |
bottom: -30px; | |
border-top: 30px solid #6C6; | |
border-left: 52px solid transparent; | |
border-right: 52px solid transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
omg, black CSS magic 😄