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 a780324 commit b728eb2Copy full SHA for b728eb2
starter/03-CSS-Fundamentals/style.css
@@ -1,4 +1,14 @@
1
-h1, h2, h3, h4, p, li {
+/* Universal selector. No inheritance. */
2
+* {
3
+ /* border-top: 10px solid *1098ad; */
4
+}
5
+
6
+/*
7
+Not all properties are inherited.
8
+Mostly ones related to text.
9
+*/
10
+body {
11
+ border-top: 10px solid #1098ad;
12
color: #444444;
13
font-family: sans-serif;
14
}
@@ -75,6 +85,14 @@ a:active {
75
85
font-style: italic;
76
86
77
87
88
+/* nav a:link {
89
+ font-size: 18px;
90
+} */
91
92
+nav {
93
94
95
78
96
/* ul {
79
97
list-style: none;
80
98
} */
0 commit comments