Skip to content

Instantly share code, notes, and snippets.

@fagci
Last active January 28, 2021 09:49
Show Gist options
  • Save fagci/f86a205a25ee56f2b71d028a923b58c0 to your computer and use it in GitHub Desktop.
Save fagci/f86a205a25ee56f2b71d028a923b58c0 to your computer and use it in GitHub Desktop.
Responsive tables with grid (sass)

Desktop:

Name Age Sex Comment

Mobile:

Name Age Sex
Comment
ul
li.table-row
.c-4.mc-6 Name
.c-2.mc-3 Age
.c-2.mc-3 Sex
.c-4.mc-12 Comment
.table-row
display: grid
grid-column-gap: 16px
grid-template-columns: repeat(12, 1fr)
@for $i from 1 through 12
.c-#{$i}
grid-column: span #{$i}
@media (max-width: 768px)
@for $i from 1 through 12
.mc-#{$i}
grid-column: span #{$i}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment