From 08347dec99104f72ef168f13630641b5fa78fc04 Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Sat, 21 Oct 2023 22:35:38 +0900 Subject: [PATCH] Change `id` from `div` to `greeting` --- .../12-css/_samples/yellow-hello-css/index.html | 2 +- .../12-css/_samples/yellow-hello-css/style.css | 2 +- docs/1-trial-session/12-css/index.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/1-trial-session/12-css/_samples/yellow-hello-css/index.html b/docs/1-trial-session/12-css/_samples/yellow-hello-css/index.html index bda90e4a7..8e1d36789 100644 --- a/docs/1-trial-session/12-css/_samples/yellow-hello-css/index.html +++ b/docs/1-trial-session/12-css/_samples/yellow-hello-css/index.html @@ -6,6 +6,6 @@ Title -
Hello CSS!
+
Hello CSS!
diff --git a/docs/1-trial-session/12-css/_samples/yellow-hello-css/style.css b/docs/1-trial-session/12-css/_samples/yellow-hello-css/style.css index 9ec8d3b34..5b2a2d9b6 100644 --- a/docs/1-trial-session/12-css/_samples/yellow-hello-css/style.css +++ b/docs/1-trial-session/12-css/_samples/yellow-hello-css/style.css @@ -1,4 +1,4 @@ -#div { +#greeting { color: yellow; background-color: black; } diff --git a/docs/1-trial-session/12-css/index.md b/docs/1-trial-session/12-css/index.md index e362fb3b4..fd2b2e472 100644 --- a/docs/1-trial-session/12-css/index.md +++ b/docs/1-trial-session/12-css/index.md @@ -180,13 +180,13 @@ CSS のプロパティには `color` (文字色) Title -
Hello CSS!
+
Hello CSS!
``` ```css title="style.css" -#div { +#greeting { color: yellow; background-color: black; }