Merge pull request #1352 from k-funk/patch-1

Update SASS_REFERENCE.md. Invalid css.
This commit is contained in:
Natalie Weizenbaum
2014-08-01 18:36:52 -07:00

View File

@@ -543,9 +543,7 @@ The property namespace itself can also have a value.
For example:
.funky {
font: 2px/3px {
family: fantasy;
size: 30em;
font: 20px/24px fantasy {
weight: bold;
}
}
@@ -553,10 +551,10 @@ For example:
is compiled to:
.funky {
font: 2px/3px;
font-family: fantasy;
font-size: 30em;
font-weight: bold; }
font: 20px/24px fantasy;
font-weight: bold;
}
### Placeholder Selectors: `%foo`