Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<title>Title</title>
</head>
<body>
<div id="div">Hello CSS!</div>
<div id="greeting">Hello CSS!</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#div {
#greeting {
color: yellow;
background-color: black;
}
4 changes: 2 additions & 2 deletions docs/1-trial-session/12-css/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,13 @@ CSS の<Term type="cssProperty">プロパティ</Term>には `color` (文字色)
<title>Title</title>
</head>
<body>
<div id="div">Hello CSS!</div>
<div id="greeting">Hello CSS!</div>
</body>
</html>
```

```css title="style.css"
#div {
#greeting {
color: yellow;
background-color: black;
}
Expand Down