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 429c95d commit f79ca23Copy full SHA for f79ca23
exercises/04.3-id-Selector/index.html
@@ -2,12 +2,10 @@
2
<html>
3
<head>
4
<link rel="stylesheet" type="text/css" href="./styles.css" />
5
- <title>
6
- 04.3 ID selector
7
- </title>
+ <title>04.3 ID selector</title>
8
</head>
9
10
<body>
11
- <span>I should look like a button</span>
+ <span id="button1">I should look like a button</span>
12
</body>
13
</html>
exercises/04.3-id-Selector/styles.css
@@ -1,5 +1,5 @@
1
#button1 {
- background: #BDBDBD;
- border: #5E5E5E;
- border-radius: 5px;
+ background: #bdbdbd;
+ border: #5e5e5e;
+ border-radius: 5px;
}
0 commit comments