mirror of
https://github.com/zhigang1992/sass.git
synced 2026-04-29 09:45:35 +08:00
Merge pull request #1352 from k-funk/patch-1
Update SASS_REFERENCE.md. Invalid css.
This commit is contained in:
@@ -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`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user