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 26cdff6 commit d18785aCopy full SHA for d18785a
foundations/03-grouping-selectors/index.html
@@ -8,7 +8,7 @@
8
<link rel="stylesheet" href="style.css">
9
</head>
10
<body>
11
- <button>Click Me!</button>
12
- <button>No, Click Me!</button>
+ <button class="btn1">Click Me!</button>
+ <button class="btn2">No, Click Me!</button>
13
</body>
14
</html>
foundations/03-grouping-selectors/style.css
@@ -0,0 +1,14 @@
1
+.btn1,.btn2{
2
+ font-size: 28px;
3
+ font-family: 'Helvetica','Times New Roman', sans-serif;
4
+}
5
+
6
+.btn1{
7
+ background-color: black;
+ color: white;
+.btn2{
+ background-color: yellow;
+ color: black;
0 commit comments