Thanks to visit codestin.com Credit goes to github.com
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 785bd7b commit 800920fCopy full SHA for 800920f
foundations/intro-to-css/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 id="button-one">Click Me!</button>
+ <button id="button-two">No, Click Me!</button>
13
</body>
14
</html>
foundations/intro-to-css/03-grouping-selectors/style.css
@@ -0,0 +1,14 @@
1
+button {
2
+ font-size: 28px;
3
+ font-family: Helvetica, "Times New Roman", sans-serif;
4
+ /* it should be noted that if the font name contains white space it should be enclosed in quotes */
5
+}
6
+
7
+#button-one {
+ background-color: #000000;
+ color: #ffffff;
+#button-two {
+ background-color: rgb(255, 255, 84);
0 commit comments