Skip to content

Instantly share code, notes, and snippets.

@alt-karate
Created November 12, 2020 10:50
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 alt-karate/ffb3286a143c74ca187f9e18733bf577 to your computer and use it in GitHub Desktop.
Save alt-karate/ffb3286a143c74ca187f9e18733bf577 to your computer and use it in GitHub Desktop.
/* 3カラムの場合の対応策 */
.container::after{
content:"";
display: block;
width:30%;
}
/* 4カラムの場合の対応策 */
.container::before{
content:"";
display: block;
width:23%;
order:1;
}
.container::after{
content:"";
display: block;
width:23%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment