回答編集履歴
1
質問の編集に合わせて追記
test
CHANGED
@@ -19,3 +19,53 @@
|
|
19
19
|
[スタイルシート[CSS]/CSSの基本/クラス名を使った指定 - TAG index](https://www.tagindex.com/stylesheet/basic/format2.html)
|
20
20
|
|
21
21
|
[クラスセレクター - CSS: カスケーディングスタイルシート | MDN](https://developer.mozilla.org/ja/docs/Web/CSS/Class_selectors)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
---
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
# 質問の編集に合わせて追記
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
まず、HTMLが間違っていると思いますのでそれを修正してください。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```html
|
38
|
+
|
39
|
+
絶景<br>の旅</div>
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
</div><!-- いらない -->
|
44
|
+
|
45
|
+
<div class="img">
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
次に、ご提示のHTMLだとフレックスレイアウトには向いていないので、HTML構造を変えるか、グリッドレイアウトを検討してください。
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
```css
|
56
|
+
|
57
|
+
.wrap {
|
58
|
+
|
59
|
+
display: grid;
|
60
|
+
|
61
|
+
grid: auto-flow / auto auto;
|
62
|
+
|
63
|
+
justify-content: center;
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
.img img {
|
68
|
+
|
69
|
+
width: 320px;
|
70
|
+
|
71
|
+
```
|