質問編集履歴
1
ソースコードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,7 +1,317 @@
|
|
1
|
+
```html
|
2
|
+
|
3
|
+
<!DOCTYPE html>
|
4
|
+
|
5
|
+
<html>
|
6
|
+
|
7
|
+
<head>
|
8
|
+
|
9
|
+
<meta charset="utf-8">
|
10
|
+
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
12
|
+
|
13
|
+
<title></title>
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="1.css">
|
16
|
+
|
17
|
+
<link rel="stylesheet" href="sumaho.css">
|
18
|
+
|
19
|
+
</head>
|
20
|
+
|
21
|
+
<body>
|
22
|
+
|
23
|
+
<header>
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
</header>
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
<div class="lesson-wrapper">
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
<div class="lessons">
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
<div class="lesson">
|
42
|
+
|
43
|
+
<div class="category 1">
|
44
|
+
|
45
|
+
<h1></h1>
|
46
|
+
|
47
|
+
<p class="text">
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
</p>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
<div class="icon">
|
58
|
+
|
59
|
+
<div class="icon 1">
|
60
|
+
|
61
|
+
<img src=".jpg">
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
</div></div>
|
66
|
+
|
67
|
+
</div>
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
<div class="lesson">
|
76
|
+
|
77
|
+
<div class="category 2">
|
78
|
+
|
79
|
+
<h1></h1>
|
80
|
+
|
81
|
+
<p class="text">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
</p>
|
86
|
+
|
87
|
+
</div>
|
88
|
+
|
89
|
+
<div class="icon">
|
90
|
+
|
91
|
+
<div class="icon 2">
|
92
|
+
|
93
|
+
<img src="S__3022854.jpg">
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
</div></div>
|
98
|
+
|
99
|
+
</div>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<div class="clear"></div>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
css
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
body {
|
120
|
+
|
121
|
+
margin: 0;
|
122
|
+
|
123
|
+
font-family: "Hiragino Kaku Gothic ProN";
|
124
|
+
|
125
|
+
height:100%;
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
html{height:100;}
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
a {
|
136
|
+
|
137
|
+
text-decoration: none;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
*{
|
144
|
+
|
145
|
+
box-sizing:border-box;
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
.clear{
|
152
|
+
|
153
|
+
clear: left;
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
.container {
|
160
|
+
|
161
|
+
width: 100%;
|
162
|
+
|
163
|
+
padding: 0 15px;
|
164
|
+
|
165
|
+
margin: 0 auto;
|
166
|
+
|
167
|
+
}
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
.lesson-wrapper {
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
height: 100%;
|
180
|
+
|
181
|
+
padding-bottom: 80px;
|
182
|
+
|
183
|
+
background-color: black;
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
margin: 0 auto;
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
}
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
.lessons{height: 100%;}
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
.lesson {
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
width: 100%;
|
206
|
+
|
207
|
+
height: 25%;
|
208
|
+
|
209
|
+
background-color: orange;
|
210
|
+
|
211
|
+
margin-bottom: 20px;
|
212
|
+
|
213
|
+
margin-top: 20px;
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
.lesson h1 {
|
224
|
+
|
225
|
+
opacity: 0.7;
|
226
|
+
|
227
|
+
font-size: 100px;
|
228
|
+
|
229
|
+
letter-spacing: 5px;
|
230
|
+
|
231
|
+
background-color: yellow;
|
232
|
+
|
233
|
+
margin-top: 0;
|
234
|
+
|
235
|
+
}
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
.text{
|
242
|
+
|
243
|
+
font-size: 10px;
|
244
|
+
|
245
|
+
display: inline-block;
|
246
|
+
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
.category{
|
256
|
+
|
257
|
+
background-color: green;
|
258
|
+
|
259
|
+
display: inline-block;
|
260
|
+
|
261
|
+
height: 50%;
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
vertical-align: top;
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
}
|
270
|
+
|
271
|
+
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
.icon {
|
276
|
+
|
277
|
+
position: relative;
|
278
|
+
|
279
|
+
width: 500px;
|
280
|
+
|
281
|
+
background-color: blue;
|
282
|
+
|
283
|
+
display: inline-block;
|
284
|
+
|
285
|
+
float: right;
|
286
|
+
|
287
|
+
vertical-align: top;
|
288
|
+
|
289
|
+
}
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
.icon img {
|
296
|
+
|
297
|
+
position: absolute;
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
width: 400px;
|
302
|
+
|
303
|
+
background-color: green;
|
304
|
+
|
305
|
+
color: white;
|
306
|
+
|
307
|
+
}
|
308
|
+
|
1
|
-
![イメージ説明](4130d7da85321b9626ae1e0503eea7c9.jpeg)**ボールドテキスト**### 前提・実現したいこと
|
309
|
+
```![イメージ説明](4130d7da85321b9626ae1e0503eea7c9.jpeg)**ボールドテキスト**### 前提・実現したいこと
|
2
310
|
|
3
311
|
|
4
312
|
|
5
313
|
写真のような構造にしたいのですが、div⑤がdiv③をはみ出してしまいます。また、スマホ画面にしたときは右のように③の中で④の下に⑤という形にしたいのですが、⑤が③をはみ出して2つ目の③と重なってしまいます。
|
6
314
|
|
7
315
|
どのようにcssを組めばよいのでしょうか?
|
316
|
+
|
317
|
+
自分でも数日間ずっと調べたり検証したりしていますが初心者にはもう限界なので助けていただきたいです。
|