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 99abb99 commit 1f53dbfCopy full SHA for 1f53dbf
starter/03-CSS-Fundamentals/index.html
@@ -146,7 +146,9 @@ <h4>Related posts</h4>
146
</aside>
147
148
<footer>
149
- <p id="copyright">Copyright © 2027 by The Code Magazine.</p>
+ <p id="copyright" class="copyright text">
150
+ Copyright © 2027 by The Code Magazine.
151
+ </p>
152
</footer>
153
</body>
154
</html>
starter/03-CSS-Fundamentals/style.css
@@ -119,3 +119,21 @@ a:active {
119
}
120
121
/* LVHA - this order is neccessary */
122
+
123
+/* Resolving conflicts */
124
125
+/* #copyright {
126
+ color: red;
127
+}
128
129
+.copyright {
130
+ color: blue;
131
132
133
+.text {
134
+ color: yellow;
135
136
137
+footer P {
138
+ color: green !important;
139
+} */
0 commit comments