Skip to content

Instantly share code, notes, and snippets.

@soerson
Last active February 18, 2016 10:44
Show Gist options
  • Save soerson/90fe33d55acf5bf9ffe3 to your computer and use it in GitHub Desktop.
Save soerson/90fe33d55acf5bf9ffe3 to your computer and use it in GitHub Desktop.
SCSS: horizontal align via justify
@mixin justifyHorAlign($ver-align: top, $item-align: left) {
text-align: justify;
&::after {
width: 100%;
content: "";
display: inline-block;
}
& > * {
display: inline-block;
vertical-align: $ver-align;
text-align: $item-align;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment