File tree Expand file tree Collapse file tree 1 file changed +29
-3
lines changed
starter/03-CSS-Fundamentals Expand file tree Collapse file tree 1 file changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -96,10 +96,36 @@ li:nth-child(even) {
96
96
}
97
97
98
98
/* * Just don't use on Descendent selectors */
99
- article p : first-child {
99
+ /* article p:first-child {
100
100
color: red;
101
- }
101
+ } */
102
+
103
+ /* article p:last-child {
104
+ color: red;
105
+ } */
102
106
103
- article p : last-child {
107
+ /* a {
104
108
color: red;
109
+ } */
110
+
111
+ a : link {
112
+ color : # 1098ad ;
113
+ /* * Make link have no underline */
114
+ text-decoration : none;
115
+ }
116
+
117
+ a : visited {
118
+ color : # 1098ad ;
119
+ }
120
+
121
+ a : hover {
122
+ color : olive;
123
+ font-weight : bold;
124
+ /* text-decoration: underline dotted orangered; */
125
+ text-decoration : underline orangered;
126
+ }
127
+
128
+ a : active {
129
+ background-color : black;
130
+ font-style : italic;
105
131
}
You can’t perform that action at this time.
0 commit comments