回答編集履歴
1
追記
answer
CHANGED
@@ -1,1 +1,69 @@
|
|
1
|
-
position:absoluteするとラップしているHTML要素は子要素の高さを引き継げません
|
1
|
+
position:absoluteするとラップしているHTML要素は子要素の高さを引き継げません
|
2
|
+
|
3
|
+
# 追記
|
4
|
+
該当部分だけ
|
5
|
+
|
6
|
+
```CSS
|
7
|
+
<style>
|
8
|
+
.space-full{
|
9
|
+
width: auto;
|
10
|
+
}
|
11
|
+
.space-top3{
|
12
|
+
background-Color:gray;
|
13
|
+
}
|
14
|
+
.space-top3 h2{
|
15
|
+
font-size:32px;
|
16
|
+
font-weight:bold;
|
17
|
+
font-style:solid;
|
18
|
+
text-align:center;
|
19
|
+
}
|
20
|
+
.space-top3-2{
|
21
|
+
background-Color:yellow;
|
22
|
+
justify-content: center;
|
23
|
+
display: -webkit-flex;
|
24
|
+
display: flex;
|
25
|
+
}
|
26
|
+
.mail,.watch,.earth{
|
27
|
+
text-align:center;
|
28
|
+
display:inline-block;
|
29
|
+
}
|
30
|
+
.mail{
|
31
|
+
background-Color:lime;
|
32
|
+
}
|
33
|
+
.watch{
|
34
|
+
background-Color:aqua;
|
35
|
+
}
|
36
|
+
.earth{
|
37
|
+
background-Color:fuchsia;
|
38
|
+
}
|
39
|
+
.mail h3,.watch h3,.earth h3{
|
40
|
+
text-align:center;
|
41
|
+
}
|
42
|
+
.mail p,.watch p,.earth p{
|
43
|
+
width: 330px;
|
44
|
+
text-align:left;
|
45
|
+
}
|
46
|
+
</style>
|
47
|
+
<div class="space-full">
|
48
|
+
<div class="space-top3">
|
49
|
+
<h2>いつも完璧な贈りもの</h2>
|
50
|
+
<div class="space-top3-2">
|
51
|
+
<div class="mail">
|
52
|
+
<img src="image/image5.png" width="50px" height="50px" alt="メール">
|
53
|
+
<h3>簡単に使える</h3>
|
54
|
+
<p>ギフトカードはメールで届きます。Airbnbアカウントへのギフト登録も超かんたん。</p>
|
55
|
+
</div>
|
56
|
+
<div class="watch">
|
57
|
+
<img src="image/image6.png" width="50px" height="50px" alt="時計">
|
58
|
+
<h3>有効期間なし</h3>
|
59
|
+
<p>Airbnbギフトカードは無期限。だから友達も時間をかけて旅をプランできます。</p>
|
60
|
+
</div>
|
61
|
+
<div class="earth">
|
62
|
+
<img src="image/image7.png" width="50px" height="50px" alt="地球儀">
|
63
|
+
<h3>忘れられない旅</h3>
|
64
|
+
<p>お家は100万件以上あるので、ずっと住みたいと憧れていた街の暮らしも叶います。</p>
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
```
|