I am trying to create a SASS mixin that will work as follows:
@include custom-horiz-sep(7);
which CSS outputs:
content: "xxxxxxx";
(7 predefined characters)
How would I use the 'for' loop in SASS to create a value for the content property?
source share