File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,18 @@ Last Child Selector `p:last-child {}`
57
57
58
58
: nth-child Selector ` p:nth-child() {} `
59
59
60
+ Selector every element that is the first element of its parent ` p:first-of-type {} `
61
+
62
+ Checked elements selector ` input:checked {} `
63
+
64
+ Disabled elements selector ` input:disabled {} `
65
+
66
+ Enabled elements selector ` input:enabled {} `
67
+
68
+ Selector elements that has no children (including text nodes) ` p:empty {} `
69
+
70
+ Selector all elements that is not a specified element ` :not(p) {} `
71
+
60
72
###Font Styling
61
73
62
74
Font style ` font-style: normal | italic | oblique `
@@ -110,6 +122,9 @@ Background Color `background-color: #2AA9E0`
110
122
Background Position `background-position: top | right | bottom | left |
111
123
center`
112
124
125
+ Background Attachment `background-attachment: scroll | fixed | local | initial |
126
+ inherit`
127
+
113
128
###Box properties
114
129
115
130
Margin ` margin-top: 2px ` ` margin-right: 4px | auto ` ` margin-bottom: 6px `
You can’t perform that action at this time.
0 commit comments