Skip to content

Instantly share code, notes, and snippets.

@thecodemedia
Created June 21, 2021 04:12
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 thecodemedia/f2dc1bc4ef8d8c08184017aed60772fa to your computer and use it in GitHub Desktop.
Save thecodemedia/f2dc1bc4ef8d8c08184017aed60772fa to your computer and use it in GitHub Desktop.
// общие настройки страницы
body {
font-family: system-ui, sans-serif;
// подключаем сетку
display: grid;
// высота — на весь экран
height: 100vh;
// задаём расстояние между блоками
grid-gap: 1rem;
// формируем колонки, минимальная ширина каждой — 200 пикселей
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment