質問編集履歴
2
scssをcssに変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,25 +8,21 @@
|
|
8
8
|
|
9
9
|
<h1>title</h1>
|
10
10
|
|
11
|
-
<div><p>content</p></div>
|
11
|
+
<div><p>content1</p><p>content2</p></div>
|
12
12
|
|
13
|
-
<div><p>content</p></div>
|
13
|
+
<div><p>content3</p><p>content4</p></div>
|
14
14
|
|
15
15
|
</section>
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
```
|
19
|
+
```CSS
|
20
20
|
|
21
|
-
section{
|
22
|
-
|
23
|
-
|
21
|
+
section:not(h1){
|
24
22
|
|
25
23
|
display: flex;
|
26
24
|
|
27
25
|
justify-content: space-between;
|
28
|
-
|
29
|
-
}
|
30
26
|
|
31
27
|
}
|
32
28
|
|
1
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,3 +31,7 @@
|
|
31
31
|
}
|
32
32
|
|
33
33
|
```
|
34
|
+
|
35
|
+
# 完成イメージ図
|
36
|
+
|
37
|
+
![イメージ説明](0fd738bfb9fe1e04fcd96c45ec2e2aa9.png)
|