Created
April 15, 2014 01:18
-
-
Save josephok/10694291 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf8"> | |
<title>CSS特指度计算</title> | |
<link rel=stylesheet href="style.css" /> | |
<style type="text/css"> | |
em {color: blue;} | |
</style> | |
</head> | |
<body> | |
<article id="first"> | |
<p class="odd"><em style="color: black">第一段文字</em></p> | |
<p>第二段文字</p> | |
</article> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
article#first p.odd em { | |
color: red; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
article#first p.odd em { | |
color: red; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf8"> | |
<title>CSS特指度计算</title> | |
<link rel=stylesheet href="style.css" /> | |
<style type="text/css"> | |
em {color: blue;} | |
</style> | |
</head> | |
<body> | |
<article id="first"> | |
<p class="odd"><em style="color: black">第一段文字</em></p> | |
<p>第二段文字</p> | |
</article> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment