Skip to content

Instantly share code, notes, and snippets.

@Fedozie
Last active May 4, 2021 13:42
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 Fedozie/86a0d76b392039e8de8929c5214a6f6a to your computer and use it in GitHub Desktop.
Save Fedozie/86a0d76b392039e8de8929c5214a6f6a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
$total: 7;
@function col-width($col, $total){
@return percentage($col/$total);
}
.col-1{
width: col-width($col:1, $total:7);
}
.col-2{
width: col-width($col:2, $total:7);
}
.col-4{
width: col-width($col:4, $total:7);
}
.col-1 {
width: 14.2857142857%;
}
.col-2 {
width: 28.5714285714%;
}
.col-4 {
width: 57.1428571429%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment