Created
November 12, 2019 01:30
-
-
Save Olein-jp/5cab9aa39af4f556c16efe9c8027c724 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 3 col | |
.container::after{ | |
content:""; | |
display: block; | |
width:30%; | |
} | |
// 4 col | |
.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