File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ email: harry@csswizardry.com
4
4
description : " High-level advice and guidelines for writing sane, manageable, scalable CSS"
5
5
baseurl : " "
6
6
url : " http://cssguidelin.es"
7
- version : 2.2.3
7
+ version : 2.2.4
8
8
9
9
# Build settings
10
10
markdown : kramdown
Original file line number Diff line number Diff line change @@ -1339,7 +1339,7 @@ style everything inside of it:
1339
1339
#foo * {}
1340
1340
1341
1341
The problem with this selector is that the key selector (` * ` ) is very, _ very_
1342
- far reaching. What this selector actually does is finds _ every single_ node in
1342
+ far reaching. What this selector actually does is find _ every single_ node in
1343
1343
the DOM (even ` <title> ` , ` <link> ` , and ` <head> ` elements; _ everything_ ) and then
1344
1344
looks to see if it lives anywhere at any level within ` #foo ` . This is a very,
1345
1345
_ very_ expensive selector, and should most likely be avoided or rewritten.
@@ -2148,7 +2148,7 @@ Our mixin:
2148
2148
}
2149
2149
2150
2150
Now the two declarations only exist once, meaning we’re not repeating ourselves.
2151
- If we ever switch out our web-font, or move to a ` font-weight: regular ; `
2151
+ If we ever switch out our web-font, or move to a ` font-weight: normal ; `
2152
2152
version, we only need to make that change in one place.
2153
2153
2154
2154
In short, only DRY code that is actually, thematically related. Do not try to
You can’t perform that action at this time.
0 commit comments