Reproduced
An error was found today while executing the compass Create my-grid–using Blueprint Command
Google a bit, said the new compass has not included compass-bluprint.
So I tried to execute the command "gem install Compass-blueprint" and manually install Compass-blueprint myself. Although it was loaded, the "Compass Compile" was compiled scss with an exception:
"Undefined mixin ' experimental '"
The above is what I tested in the virtual machine system.
My own machine because it was a long time ago loaded compass, can normally compile scss, I run "compass-v" view of my compass version, is 0.12.2,.
So I tried to install the previous version of Compass in the virtual machine and finally succeeded.
Workaround:
1. If you have tried "gem install compass-blueprint" Installation Compass-blueprint, then you must first uninstall:
Gem Uninstall Compass-blueprint
2, uninstall Sass, this is the compass installed when the installation, you need to uninstall the
Gem Uninstall Sass
3. Uninstalling Compass
4. Install 3.2.12 Version of Sass
Gem Install sass-v 3.2.12
5. Install 0.12.2 version of Compass
Gem Install Compass--version 0.12.2
Sass Basic Usage
1. Using variables
One of the important features that sass benefits people is that he referenced the variables for CSS.
1.1 Variable Declaration
$highlight-color: #absdef;
Compass Scss Blueprint