Last active
December 20, 2015 09:49
-
-
Save theaccordance/6110467 to your computer and use it in GitHub Desktop.
Method for creating Hexagons using CSS
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-top { | |
| width: 0; | |
| border-bottom: 60px solid #e8e4e2; | |
| border-left: 150px solid transparent; | |
| border-right: 150px solid transparent; | |
| } | |
| .hex-body { | |
| width: 300px; | |
| height: 180px; | |
| background-color: #e8e4e2; | |
| } | |
| .hex-bottom { | |
| width: 0; | |
| border-top: 60px solid #e8e4e2; | |
| border-left: 150px solid transparent; | |
| border-right: 150px solid transparent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment