質問編集履歴

1

コードの追加

2020/05/27 20:35

投稿

ponchineey09083
ponchineey09083

スコア16

test CHANGED
@@ -1 +1 @@
1
- CSS コンテンツ内移動
1
+ CSS /コンテンツ内移動させるときにほぼ全てpositionを使う間違い/divタグの多用
test CHANGED
@@ -1,3 +1,393 @@
1
- cssでコードを打つとき、レイアウトの配置でコンテンツ内を移動させるためほぼ全てpositionを使いまくってしまうのですがこのやり方は間違っている気がします。みなさんはどんなプロパティを使てコーディングしますか。
2
-
3
- また、potisionを使うとなるとdivタグを多用してしまい、divタグだらけのコードになっていまいます。どんな時にdivタグを使わないのかなど教えていただきたいです。よろしくお願いします。
1
+ cssでコードを打つとき、レイアウトの配置でコンテンツ内を移動させるためほぼ全てpositionを使いまくってしまうのですがこのやり方は間違っている気がします。どんなプロパティを使用してコーディングしたらいのでしょうか。
2
+
3
+ また、divタグを多用してしまい、divタグだらけのコードになっていまいます。どんな時にdivタグを使わないのかなど教えていただきたいです。よろしくお願いします。
4
+
5
+
6
+
7
+ ```
8
+
9
+ <div class="h2_2">
10
+
11
+ <h2>万一の時も安心です</h2>
12
+
13
+ <p>大切なお家にお迎えする相手選びは、信頼第一で進めたいですよね。 その思いに応えるため、Airbnbでは宿泊者に求める厳格な要件をホスト自身の手で設定し、滞在前にお互い交流できるシステムを採用しています。 万一のトラブルのときには、Airbnbが全力でサポートします。 建物・家財の被害は「ホスト保証」、賠償責任は「ホスト補償保険」でカバー。ホストのみなさまのあらゆるシチュエーションに対処しています。</p>
14
+
15
+ </div>
16
+
17
+ <div class="h2_2bottom">
18
+
19
+ <a href="#">ホストをお守りするしくみを見る</a>
20
+
21
+ </div>
22
+
23
+
24
+
25
+ <div class="h2_2_1">
26
+
27
+ <span>予約前に政府発行の身分証明書を求める権限</span>
28
+
29
+ </div>
30
+
31
+ <div class="h2_2_2">
32
+
33
+ <span>ハウスルールに同意しないと泊まれない</span>
34
+
35
+ </div>
36
+
37
+ <div class="h2_2_3">
38
+
39
+ <span>過去の宿泊のレビューもばっちり読める</span>
40
+
41
+ </div>
42
+
43
+ <div class="h2_2_4">
44
+
45
+ <span>財物損害は¥100,000,000まで無料で補償</span>
46
+
47
+ </div>
48
+
49
+ <div class="h2_2_5">
50
+
51
+ <span>$1,000,000の賠償責任保険が無料で付帯</span>
52
+
53
+ </div>
54
+
55
+ <div class="h2_2_6">
56
+
57
+ <span>24時間365日対応グローバルカスタマーサポート</span>
58
+
59
+ </div>
60
+
61
+ ```
62
+
63
+ ```
64
+
65
+ .h2_2{
66
+
67
+ position:relative;
68
+
69
+ top:460px;
70
+
71
+ text-align:center;
72
+
73
+ font-size:60px;
74
+
75
+ color:#2B2B2B;
76
+
77
+ margin:300px;
78
+
79
+ }
80
+
81
+ .h2_2 h2::before{
82
+
83
+ position:absolute;
84
+
85
+ content:"";
86
+
87
+ width:60px;
88
+
89
+ height:2px;
90
+
91
+ top:-15px;
92
+
93
+ left:50%;
94
+
95
+ background-color:#636262;
96
+
97
+ transform:translateX(-50%);
98
+
99
+ }
100
+
101
+
102
+
103
+ .h2_2 p{
104
+
105
+ position:absolute;
106
+
107
+ text-align:left;
108
+
109
+ font-size:18px;
110
+
111
+ color:#4E4D4D;
112
+
113
+ line-height:1.5;
114
+
115
+ right:700px;
116
+
117
+ top:180px;
118
+
119
+ width:479px;
120
+
121
+ }
122
+
123
+
124
+
125
+ .h2_2bottom{
126
+
127
+ position:relative;
128
+
129
+ }
130
+
131
+
132
+
133
+ .h2_2bottom a{
134
+
135
+ position:absolute;
136
+
137
+ font-size:18px;
138
+
139
+ top:520px;
140
+
141
+ left:423px;
142
+
143
+ color:#2DBC96;
144
+
145
+ text-decoration:none;
146
+
147
+ }
148
+
149
+
150
+
151
+ .h2_2bottom a:hover{
152
+
153
+ text-decoration:underline;
154
+
155
+ }
156
+
157
+ .h2_2_1,.h2_2_2,.h2_2_3,.h2_2_4,.h2_2_5,.h2_2_6{
158
+
159
+ position:relative;
160
+
161
+ }
162
+
163
+
164
+
165
+ .h2_2_1 span{
166
+
167
+ position:absolute;
168
+
169
+ top:270px;
170
+
171
+ font-size:18px;
172
+
173
+ left:1000px;
174
+
175
+ color:#4E4D4D;
176
+
177
+ }
178
+
179
+
180
+
181
+ .h2_2_2 span{
182
+
183
+ position:absolute;
184
+
185
+ font-size:18px;
186
+
187
+ left:1000px;
188
+
189
+ top:310px;
190
+
191
+ color:#4E4D4D;
192
+
193
+ }
194
+
195
+
196
+
197
+ .h2_2_3 span{
198
+
199
+ position:absolute;
200
+
201
+ font-size:18px;
202
+
203
+ left:1000px;
204
+
205
+ top:350px;
206
+
207
+ color:#4E4D4D;
208
+
209
+ }
210
+
211
+
212
+
213
+ .h2_2_4 span{
214
+
215
+ position:absolute;
216
+
217
+ font-size:18px;
218
+
219
+ left:1000px;
220
+
221
+ top:390px;
222
+
223
+ color:#4E4D4D;
224
+
225
+ }
226
+
227
+
228
+
229
+ .h2_2_5 span{
230
+
231
+ position:absolute;
232
+
233
+ font-size:18px;
234
+
235
+ left:1000px;
236
+
237
+ top:430px;
238
+
239
+ color:#4E4D4D;
240
+
241
+ }
242
+
243
+
244
+
245
+ .h2_2_6 span{
246
+
247
+ position:absolute;
248
+
249
+ font-size:18px;
250
+
251
+ left:1000px;
252
+
253
+ top:470px;
254
+
255
+ color:#4E4D4D;
256
+
257
+ }
258
+
259
+
260
+
261
+
262
+
263
+ .h2_2_1 span::before{
264
+
265
+ position:absolute;
266
+
267
+ content:"";
268
+
269
+ border-right:2px solid #2DBC96;
270
+
271
+ border-bottom:2px solid #2DBC96;
272
+
273
+ width:5px;
274
+
275
+ height:13px;
276
+
277
+ transform:rotate(45deg);
278
+
279
+ left:-20px;
280
+
281
+ }
282
+
283
+
284
+
285
+ .h2_2_2 span::before{
286
+
287
+ position:absolute;
288
+
289
+ content:"";
290
+
291
+ border-right:2px solid #2DBC96;
292
+
293
+ border-bottom:2px solid #2DBC96;
294
+
295
+ width:5px;
296
+
297
+ height:13px;
298
+
299
+ transform:rotate(45deg);
300
+
301
+ left:-20px;
302
+
303
+ }
304
+
305
+
306
+
307
+ .h2_2_3 span::before{
308
+
309
+ position:absolute;
310
+
311
+ content:"";
312
+
313
+ border-right:2px solid #2DBC96;
314
+
315
+ border-bottom:2px solid #2DBC96;
316
+
317
+ width:5px;
318
+
319
+ height:13px;
320
+
321
+ transform:rotate(45deg);
322
+
323
+ left:-20px;
324
+
325
+ }
326
+
327
+
328
+
329
+ .h2_2_4 span::before{
330
+
331
+ position:absolute;
332
+
333
+ content:"";
334
+
335
+ border-right:2px solid #2DBC96;
336
+
337
+ border-bottom:2px solid #2DBC96;
338
+
339
+ width:5px;
340
+
341
+ height:13px;
342
+
343
+ transform:rotate(45deg);
344
+
345
+ left:-20px;
346
+
347
+ }
348
+
349
+
350
+
351
+ .h2_2_5 span::before{
352
+
353
+ position:absolute;
354
+
355
+ content:"";
356
+
357
+ border-right:2px solid #2DBC96;
358
+
359
+ border-bottom:2px solid #2DBC96;
360
+
361
+ width:5px;
362
+
363
+ height:13px;
364
+
365
+ transform:rotate(45deg);
366
+
367
+ left:-20px;
368
+
369
+ }
370
+
371
+
372
+
373
+ .h2_2_6 span::before{
374
+
375
+ position:absolute;
376
+
377
+ content:"";
378
+
379
+ border-right:2px solid #2DBC96;
380
+
381
+ border-bottom:2px solid #2DBC96;
382
+
383
+ width:5px;
384
+
385
+ height:13px;
386
+
387
+ transform:rotate(45deg);
388
+
389
+ left:-20px;
390
+
391
+ }
392
+
393
+ ```