Skip to content

Instantly share code, notes, and snippets.

@myericho
Created November 25, 2015 07:12
Show Gist options
  • Save myericho/35b5ddd97e391c3245c4 to your computer and use it in GitHub Desktop.
Save myericho/35b5ddd97e391c3245c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a>testetest</a>
<div>test</div>
<ul>
<li class='top'>gggg</li>
<li>第2個</li>
</ul>
// ----
// libsass (v3.2.5)
// ----
/*第一階段*/
$link-color:red;
$font-size:20px;
a{
color:$link-color;
font-size:$font-size;
}
div{
color:$link-color;
font-size:$font-size;
}
/*巢狀迴圈階段*/
ul{
margin:10px;
li{
padding:$font-size;
&.top{
padding-left:300px;
}
}
}
@charset "UTF-8";
/*第一階段*/
a {
color: red;
font-size: 20px;
}
div {
color: red;
font-size: 20px;
}
/*巢狀迴圈階段*/
ul {
margin: 10px;
}
ul li {
padding: 20px;
}
ul li.top {
padding-left: 300px;
}
<a>testetest</a>
<div>test</div>
<ul>
<li class='top'>gggg</li>
<li>第2個</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment