Skip to content

Instantly share code, notes, and snippets.

@leidottw
Created February 16, 2014 07:50
Show Gist options
  • Select an option

  • Save leidottw/9030841 to your computer and use it in GitHub Desktop.

Select an option

Save leidottw/9030841 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div>文字<a>文字2<span>文字3</span></a></div>
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
$large: 5rem;
$medium: 3rem;
$small: 1rem;
div {
color: red;
font-size: $large;
a {
color: orange;
font-size: $medium;
span {
color: yellow;
font-size: $small;
}
}
}
div {
color: red;
font-size: 5rem;
}
div a {
color: orange;
font-size: 3rem;
}
div a span {
color: yellow;
font-size: 1rem;
}
<div>文字<a>文字2<span>文字3</span></a></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment