We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3c00b commit f2c33c5Copy full SHA for f2c33c5
starter/03-CSS-Fundamentals/index.html
@@ -29,6 +29,7 @@ <h1>📘 The Code Magazine</h1>
29
</header>
30
31
<article>
32
+ <p>Test</p>
33
<header>
34
<h2>The Basic Language of the Web: HTML</h2>
35
starter/03-CSS-Fundamentals/style.css
@@ -81,3 +81,25 @@ aside {
81
body {
82
/* background-color: blue; */
83
}
84
+
85
+/* * Pseudo Class */
86
+li:first-child {
87
+ font-weight: bold;
88
+}
89
90
+li:last-child {
91
+ font-style: italic;
92
93
94
+li:nth-child(even) {
95
+ color: grey;
96
97
98
+/* * Just don't use on Descendent selectors */
99
+article p:first-child {
100
+ color: red;
101
102
103
+article p:last-child {
104
105
0 commit comments