Skip to content

Commit ddea37d

Browse files
authored
Merge pull request #504 from ut-code/fix-css-answer
2 parents 342b68c + 08347de commit ddea37d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/1-trial-session/12-css/_samples/yellow-hello-css/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<title>Title</title>
77
</head>
88
<body>
9-
<div id="div">Hello CSS!</div>
9+
<div id="greeting">Hello CSS!</div>
1010
</body>
1111
</html>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#div {
1+
#greeting {
22
color: yellow;
33
background-color: black;
44
}

docs/1-trial-session/12-css/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ CSS の<Term type="cssProperty">プロパティ</Term>には `color` (文字色)
176176
<title>Title</title>
177177
</head>
178178
<body>
179-
<div id="div">Hello CSS!</div>
179+
<div id="greeting">Hello CSS!</div>
180180
</body>
181181
</html>
182182
```
183183

184184
```css title="style.css"
185-
#div {
185+
#greeting {
186186
color: yellow;
187187
background-color: black;
188188
}

0 commit comments

Comments
 (0)