Skip to content

Instantly share code, notes, and snippets.

@hidoos
Created February 25, 2014 02:54
Show Gist options
  • Save hidoos/9201752 to your computer and use it in GitHub Desktop.
Save hidoos/9201752 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
// 演示多个变量一起声明
//=================================================
$sidebarTagColor : red blue;
a{
color:nth($sidebarTagColor,2);
}
a:hover{
color:nth($sidebarTagColor,1);
}
a {
color: blue;
}
a:hover {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment