Skip to content

Instantly share code, notes, and snippets.

@vosaul
Last active September 29, 2018 06:57
Show Gist options
  • Save vosaul/033830db45b99927aa398b83947edda7 to your computer and use it in GitHub Desktop.
Save vosaul/033830db45b99927aa398b83947edda7 to your computer and use it in GitHub Desktop.
css grid based header
.header {
display: grid;
-ms-display: grid;
grid-template-columns: 27.66% 44.68% 1fr;
-ms-grid-columns: 27.66% 14.52% 15.64% 14.52% 27.66%;
grid-template-rows: 150px;
align-content: space-evenly;
color: #aaa;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment