Skip to content

Commit 08347de

Browse files
committed
Change id from div to greeting
1 parent 4df8a30 commit 08347de

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
@@ -180,13 +180,13 @@ CSS の<Term type="cssProperty">プロパティ</Term>には `color` (文字色)
180180
<title>Title</title>
181181
</head>
182182
<body>
183-
<div id="div">Hello CSS!</div>
183+
<div id="greeting">Hello CSS!</div>
184184
</body>
185185
</html>
186186
```
187187

188188
```css title="style.css"
189-
#div {
189+
#greeting {
190190
color: yellow;
191191
background-color: black;
192192
}

0 commit comments

Comments
 (0)