Skip to content

Instantly share code, notes, and snippets.

@alcidesqueiroz
Created September 21, 2018 22:51
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 alcidesqueiroz/bc03e735a1dbd25b2a2a18e8a84c66e9 to your computer and use it in GitHub Desktop.
Save alcidesqueiroz/bc03e735a1dbd25b2a2a18e8a84c66e9 to your computer and use it in GitHub Desktop.
It's 2018: you shouldn't be writing vanilla CSS - Example 9
repeat($str, $qty) {
if ($qty < 1) {
return '';
}
$ret = '';
for $i in 1..$qty {
$ret += $str;
}
$ret;
}
h1:before{
content: repeat(ha, 5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment