File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 < title > タイトル</ title >
77 </ head >
88 < body >
9- < p id ="greeting "> Hello CSS! </ p >
9+ < p id ="greeting "> こんにちは、 CSS! </ p >
1010 </ body >
1111</ html >
Original file line number Diff line number Diff line change 11# greeting {
22 color : green;
3+ background-color : lightgray;
34 font-size : 40px ;
45}
Original file line number Diff line number Diff line change @@ -100,7 +100,9 @@ CSS の<Term type="cssProperty">プロパティ</Term>には `color` (文字色)
100100
101101### 問題 1
102102
103- 次のように、画面に ` こんにちは、CSS! ` と表示して、文字色を緑色、文字サイズを ` 40px ` にしてください。
103+ 次のように、画面に ` こんにちは、CSS! ` と表示して、文字色を ` green ` に、背景色を ` lightgray ` に、文字サイズを ` 40px ` にしてください。
104+
105+ ![ こんにちは、CSS!] ( ./hello-css.jpg )
104106
105107<Answer title = " こんにちは、CSS!" >
106108
@@ -112,14 +114,15 @@ CSS の<Term type="cssProperty">プロパティ</Term>には `color` (文字色)
112114 <title >タイトル</title >
113115 </head >
114116 <body >
115- <p id =" greeting" >Hello CSS! </p >
117+ <p id =" greeting" >こんにちは、 CSS! </p >
116118 </body >
117119</html >
118120```
119121
120122``` css
121123#greeting {
122124 color : green ;
125+ background-color : lightgray ;
123126 font-size : 40px ;
124127}
125128```
You can’t perform that action at this time.
0 commit comments