Skip to content

Instantly share code, notes, and snippets.

@wplit
Created February 3, 2020 23:42
Show Gist options
  • Select an option

  • Save wplit/05299acdf50fe5d491023c6237064311 to your computer and use it in GitHub Desktop.

Select an option

Save wplit/05299acdf50fe5d491023c6237064311 to your computer and use it in GitHub Desktop.
three column easy posts with grid
%%EPID%% .oxy-posts {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1120px) {
%%EPID%% .oxy-posts {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
%%EPID%% .oxy-posts {
grid-template-columns: 1fr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment