Skip to content

Instantly share code, notes, and snippets.

@jamiebuilds
Created October 23, 2013 02:45
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 jamiebuilds/7111805 to your computer and use it in GitHub Desktop.
Save jamiebuilds/7111805 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
.tests-a {
test-1: 1 * 1 ; // 1
test-2: 1.1 * 10 ; // 11
test-3: 1.11 * 100 ; // 111.0 <=
test-4: 1.111 * 1000 ; // 1111
test-5: 1.1111 * 10000 ; // 11111
test-5: 1.11111 * 100000 ; // 111111
test-6: 1.111111 * 1000000 ; // 1111111
test-7: 1.1111111 * 10000000 ; // 11111111
}
.tests-b {
test-1: ceil( 1 * 1 ); // 1
test-2: ceil( 1.1 * 10 ); // 11
test-3: ceil( 1.11 * 100 ); // 112 <=
test-4: ceil( 1.111 * 1000 ); // 1111
test-5: ceil( 1.1111 * 10000 ); // 11111
test-5: ceil( 1.11111 * 100000 ); // 111111
test-6: ceil( 1.111111 * 1000000 ); // 1111111
test-7: ceil( 1.1111111 * 10000000 ); // 11111111
}
.tests-a {
test-1: 1;
test-2: 11;
test-3: 111.0;
test-4: 1111;
test-5: 11111;
test-5: 111111;
test-6: 1111111;
test-7: 11111111;
}
.tests-b {
test-1: 1;
test-2: 11;
test-3: 112;
test-4: 1111;
test-5: 11111;
test-5: 111111;
test-6: 1111111;
test-7: 11111111;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment