回答編集履歴
2
コード追記
test
CHANGED
@@ -71,3 +71,71 @@
|
|
71
71
|
}
|
72
72
|
|
73
73
|
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
---
|
78
|
+
|
79
|
+
テキストはフッター全体の中央、
|
80
|
+
|
81
|
+
インスタグラムアイコンは右から指定位置にする場合
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
```css
|
88
|
+
|
89
|
+
#footer {
|
90
|
+
|
91
|
+
width: 100%;
|
92
|
+
|
93
|
+
height: 100px;
|
94
|
+
|
95
|
+
background-color: aqua;
|
96
|
+
|
97
|
+
display: flex;
|
98
|
+
|
99
|
+
justify-content: center;
|
100
|
+
|
101
|
+
align-items: center;
|
102
|
+
|
103
|
+
position: relative;
|
104
|
+
|
105
|
+
}
|
106
|
+
|
107
|
+
.footer-text {
|
108
|
+
|
109
|
+
color: #2F4F4F;
|
110
|
+
|
111
|
+
text-align: center;
|
112
|
+
|
113
|
+
}
|
114
|
+
|
115
|
+
#footer h1 {
|
116
|
+
|
117
|
+
width:40px;
|
118
|
+
|
119
|
+
height:40px;
|
120
|
+
|
121
|
+
position: absolute;
|
122
|
+
|
123
|
+
top: 50%;
|
124
|
+
|
125
|
+
right: 20px;
|
126
|
+
|
127
|
+
transform: translateY(-50%);
|
128
|
+
|
129
|
+
margin: 0;
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
.instagram{
|
134
|
+
|
135
|
+
width:100%;
|
136
|
+
|
137
|
+
height:100%;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
```
|
1
コード追記
test
CHANGED
@@ -23,3 +23,51 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
float を使わずに flex でレイアウトすれば悩まずにすみますね。
|
26
|
+
|
27
|
+
テキストとアイコンを上下中央配置にするならば、
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```css
|
32
|
+
|
33
|
+
#footer {
|
34
|
+
|
35
|
+
width: 100%;
|
36
|
+
|
37
|
+
height: 100px;
|
38
|
+
|
39
|
+
background-color: aqua;
|
40
|
+
|
41
|
+
display: flex;
|
42
|
+
|
43
|
+
align-items: center;
|
44
|
+
|
45
|
+
justify-content: space-between;
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
.footer-text {
|
50
|
+
|
51
|
+
color: #2F4F4F;
|
52
|
+
|
53
|
+
text-align: center;
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
#footer h1 {
|
58
|
+
|
59
|
+
width:40px;
|
60
|
+
|
61
|
+
height:40px;
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
.instagram{
|
66
|
+
|
67
|
+
width:100%;
|
68
|
+
|
69
|
+
height:100%;
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
```
|