Skip to content

Commit 8b707dc

Browse files
committed
Completed Styling Hyperlinks
1 parent 4094ab6 commit 8b707dc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

myWork/03-CSS-Fundamentals/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,23 @@ li {
7070
border-top: 5px solid #1098ad;
7171
border-bottom: 5px solid #1098ad;
7272
}
73+
74+
a:link {
75+
color: #1098ad;
76+
text-decoration: none;
77+
}
78+
79+
a:visited {
80+
color: #1098ad;
81+
}
82+
83+
a:hover {
84+
color: orangered;
85+
font-weight: bold;
86+
text-decoration: underline orangered;
87+
}
88+
89+
a:active {
90+
background-color: black;
91+
font-style: italic;
92+
}

0 commit comments

Comments
 (0)