Skip to content

Instantly share code, notes, and snippets.

@matiishyn
Created February 21, 2019 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matiishyn/81f55acad424be6fb598862f5237ed28 to your computer and use it in GitHub Desktop.
Save matiishyn/81f55acad424be6fb598862f5237ed28 to your computer and use it in GitHub Desktop.
3 колонки
<div>
<header>Header</header>
<main>
<aside>Left col</aside>
<div id="center">Center</div>
<aside>Right col</aside>
</main>
<footer>Footer</footer>
</div>
<style>
* { border: 1px solid black; }
main { display: flex; }
#center { flex: 1; }
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment