Skip to content

Commit 1f53dbf

Browse files
author
parshurampatil
committed
resolving css conflicts
1 parent 99abb99 commit 1f53dbf

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

starter/03-CSS-Fundamentals/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ <h4>Related posts</h4>
146146
</aside>
147147

148148
<footer>
149-
<p id="copyright">Copyright &copy; 2027 by The Code Magazine.</p>
149+
<p id="copyright" class="copyright text">
150+
Copyright &copy; 2027 by The Code Magazine.
151+
</p>
150152
</footer>
151153
</body>
152154
</html>

starter/03-CSS-Fundamentals/style.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,21 @@ a:active {
119119
}
120120

121121
/* 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

Comments
 (0)