Skip to content

Instantly share code, notes, and snippets.

@theaccordance
Last active December 20, 2015 09:49
Show Gist options
  • Select an option

  • Save theaccordance/6110467 to your computer and use it in GitHub Desktop.

Select an option

Save theaccordance/6110467 to your computer and use it in GitHub Desktop.
Method for creating Hexagons using CSS
.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