質問編集履歴
1
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,39 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
![イメージ説明](a7c2ed2fd8ff6ae8d2e0ee97d0220d93.png)
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
```HTML
|
12
|
+
|
13
|
+
<div class="item">
|
14
|
+
|
15
|
+
<div class="information">
|
16
|
+
|
17
|
+
<h2>タイトルが入る</h2>
|
18
|
+
|
19
|
+
<p>説明テキスト説明テキスト説明テキスト...</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<img class="image" src="hoge">
|
24
|
+
|
25
|
+
</div>
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```css
|
32
|
+
|
33
|
+
.item {
|
34
|
+
|
35
|
+
display: flex;
|
36
|
+
|
37
|
+
}
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
↑PC˜の場合はこれでいけるが、SPでdisplay: block;にすると、上から「タイトル→説明テキスト→画像」の順になってしまう
|