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 aeff902 commit d4a9227Copy full SHA for d4a9227
starter/03-CSS-Fundamentals/index.html
@@ -145,7 +145,9 @@ <h4>Related posts</h4>
145
</aside>
146
147
<footer>
148
- <p id="copyright">Copyright © 2027 by The Code Magazine.</p>
+ <p id="copyright" class="copyright text">
149
+ Copyright © 2027 by The Code Magazine.
150
+ </p>
151
</footer>
152
</body>
153
</html>
starter/03-CSS-Fundamentals/style.css
@@ -103,3 +103,21 @@ a:hover {
103
a:active {
104
background-color: palevioletred;
105
}
106
+
107
+/* RESOLVING CONFLICTS */
108
109
+/* .copyright {
110
+ color: red;
111
+}
112
113
+#copyright {
114
+ color: blue;
115
116
117
+.text {
118
+ color: yellow;
119
120
121
+footer p {
122
+ color: green;
123
+} */
0 commit comments