質問編集履歴

7

...

2020/07/13 10:31

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -32,97 +32,9 @@
32
32
 
33
33
 
34
34
 
35
- ###1:PHPコード
36
-
37
- ```PHP
38
-
39
- // 固定ページレイアウト セッティング
40
-
41
- $wp_customize->add_setting( 'fit_theme_pageLayout', array(
42
-
43
- 'default' => 'value1',
44
-
45
- 'type' => 'option',
46
-
47
- 'sanitize_callback' => 'fit_sanitize_select',
48
-
49
- ));
50
-
51
- // 固定ページレイアウト コントロール
52
-
53
- $wp_customize->add_control( 'fit_theme_pageLayout', array(
54
-
55
- 'section' => 'fit_theme_section',
56
-
57
- 'settings' => 'fit_theme_pageLayout',
58
-
59
- 'description' => '固定ページのレイアウトを選択<br>',
60
-
61
- 'type' => 'select',
62
-
63
- 'choices' => array(
64
-
65
- 'value1' => '2カラム(default)',
66
-
67
- 'value2' => '1カラム',
68
-
69
- ),
70
-
71
- ));
72
35
 
73
36
 
74
-
75
- //1カラム時の横幅 セッティング
76
-
77
- $wp_customize->add_setting( 'fit_theme_singleWidth', array(
78
-
79
- 'default' => 'value1',
80
-
81
- 'type' => 'option',
82
-
83
- 'sanitize_callback' => 'fit_sanitize_select',
84
-
85
- ));
86
-
87
- // 1カラム時の横幅 コントロール
88
-
89
- $wp_customize->add_control( 'fit_theme_singleWidth', array(
90
-
91
- 'section' => 'fit_theme_section',
92
-
93
- 'settings' => 'fit_theme_singleWidth',
94
-
95
- 'description' => '1カラム時のメインカラムの横幅を選択<br>
96
-
97
- (アーカイブ・投稿・固定ページで適用されます)',
98
-
99
- 'type' => 'select',
100
-
101
- 'choices' => array(
102
-
103
- 'value2' => '740px',
104
-
105
- 'value1' => '820px(default)',
106
-
107
- 'value3' => '900px',
108
-
109
- 'value4' => '100%',
110
-
111
- ),
112
-
113
- ));
114
-
115
- ```
116
-
117
- *恐らく、ここの「1カラム時の横幅」という項目が、問題解決のカギとなっていると思います。
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
- ###2:CSSコード
37
+ ###:CSSコード
126
38
 
127
39
  ```改善するべきCSS
128
40
 
@@ -194,6 +106,12 @@
194
106
 
195
107
 
196
108
 
109
+
110
+
111
+
112
+
113
+
114
+
197
115
  ### 試したこと
198
116
 
199
117
  - メインテーマの、余白の部分をいじってみた(しかし、余白は消えなかった)

6

再び質問することにした

2020/07/13 10:31

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -124,372 +124,88 @@
124
124
 
125
125
  ###2:CSSコード
126
126
 
127
- ```CSS
128
-
129
- html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{
130
-
131
- margin:0;
132
-
133
- padding:0;
134
-
135
- }
136
-
137
- h1,h2,h3,h4,h5,h6{font-size:100%;}
138
-
139
- ol,ul,li,dl{list-style-position: inside;}
140
-
141
- button,input,select,textarea{margin:0;}
142
-
143
- html{
144
-
145
- box-sizing:border-box;
146
-
147
- line-height:1;
148
-
149
- font-size: 62.5%;
150
-
151
- }
152
-
153
- *,*:before,*:after{box-sizing:inherit;}
154
-
155
- img,embed,iframe,object,audio,video{max-width:100%;}
156
-
157
- iframe{border:0;}
158
-
159
- table{
160
-
161
- border-collapse:collapse;
162
-
163
- border-spacing:0;
164
-
165
- }
166
-
167
- td,th{
168
-
169
- padding:0;
170
-
171
- text-align:left;
172
-
173
- }
174
-
175
- hr{
176
-
177
- height: 0;
178
-
179
- border: 0;
180
-
181
- }
182
-
183
-
184
-
185
-
186
-
187
- /*ベース
188
-
189
- /************************************************************/
190
-
191
- body {
192
-
193
- width:100%;
194
-
195
- font-family: "Lato", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "MS Pゴシック", "MS PGothic", "sans-serif";
196
-
197
- font-size: 1.4rem;
198
-
199
- font-weight:500;
200
-
201
- background:#F2F2F2;
202
-
203
- color:#191919;
204
-
205
- }
206
-
207
- button, input, select, textarea{
208
-
209
- font-family:inherit;
210
-
211
- font-weight:inherit;
212
-
213
- font-size: inherit;
214
-
215
- }
216
-
217
- a{
218
-
219
- color:inherit;
220
-
221
- text-decoration:none;
222
-
223
- }
224
-
225
-
226
-
227
-
228
-
229
- /*レイアウト
230
-
231
- /************************************************************/
232
-
233
-
234
-
235
- /*ヘッダー*/
236
-
237
- .l-header{
238
-
239
- display: flex;
240
-
241
- flex-flow: column-reverse nowrap;
242
-
243
- }
244
-
245
-
246
-
247
- /*ヘッダーエクストラ*/
248
-
249
- .l-hExtra{
250
-
251
- position:relative;
252
-
253
- width:100%;
254
-
255
- background:#191919;
256
-
257
- padding-top:10px;
258
-
259
- }
260
-
261
- .l-hExtra::after {
262
-
263
- content: "";
264
-
265
- display: block;
266
-
267
- clear: both;
268
-
269
- }
270
-
271
-
272
-
273
- /*ヘッダーメイン*/
274
-
275
- .l-hMain{
276
-
277
- width:100%;
278
-
279
- background:#323232;
280
-
281
- }
282
-
283
- .l-hMain::after {
284
-
285
- content: "";
286
-
287
- display: block;
288
-
289
- clear: both;
290
-
291
- }
292
-
293
-
294
-
295
- /*ラッパー*/
296
-
297
- .l-wrapper {
298
-
299
- position:relative;
300
-
301
- display: flex;
302
-
303
- width:1100px;
304
-
305
- max-width:95%;
306
-
307
- margin: 0 auto;
308
-
309
- }
310
-
311
-
312
-
313
- /*メイン*/
314
-
315
- .l-main {
316
-
317
- width: 67.5%;
318
-
319
- padding:60px 3.5% 60px 0;
320
-
321
- }
322
-
323
- .l-main::before {
324
-
325
- position: absolute;
326
-
327
- top: 0;
328
-
329
- right:32.5%;
330
-
331
- bottom: 0;
332
-
333
- left:-100vw;
334
-
335
- content: "";
336
-
337
- background: #ffffff;
338
-
339
- border-right:#E5E5E5 1px solid;
340
-
341
- z-index: -99999;
342
-
343
- }
344
-
345
- .l-main.l-main-single {
346
-
347
- width: 820px;
348
-
349
- max-width:100%;
350
-
351
- padding:60px 30px;
352
-
353
- margin: 0 auto;
354
-
355
- background: #ffffff;
356
-
357
- border-left:#E5E5E5 1px solid;
358
-
359
- border-right:#E5E5E5 1px solid;
360
-
361
- }
362
-
363
- .l-main.l-main-single::before {content: normal;}
364
-
365
- .l-main.l-main-w740 {width: 740px;}
366
-
367
- .l-main.l-main-w900 {width: 900px;}
368
-
369
- .l-main.l-main-w100 {width: 100%;}
370
-
371
-
372
-
373
- /*サイドバー*/
374
-
375
- .l-sidebar {
376
-
377
- width: 32.5%;
378
-
379
- padding:60px 0 60px 3.5%;
380
-
381
- }
382
-
383
-
384
-
385
- /*フッター*/
386
-
387
- .l-footer {
388
-
389
- position:relative;
390
-
391
- width:100%;
392
-
393
- background:#191919;
394
-
395
- }
127
+ ```改善するべきCSS
128
+
129
+ <?php /* Template Name:シングルカラムTPL */?>
130
+
131
+ <?php get_header(); ?>
132
+
133
+
134
+
135
+ <!-- l-wrapper -->
136
+
137
+ <div class="l-wrapper">
138
+
139
+
140
+
141
+ <!-- l-main -->
142
+
143
+ <main class="l-main l-main-single<?php if ( get_option('fit_theme_singleWidth') == 'value2' ):?> l-main-w740<?php endif; ?>
144
+
145
+ <?php if ( get_option('fit_theme_singleWidth') == 'value3' ):?> l-main-w900<?php endif; ?>
146
+
147
+ <?php if ( get_option('fit_theme_singleWidth') == 'value4' ):?> l-main-w100<?php endif; ?>">
148
+
149
+
150
+
151
+ <?php fit_breadcrumb(); ?>
152
+
153
+
154
+
155
+ <article>
156
+
157
+ <h1 class="heading heading-primary"><?php the_title(); ?></h1>
158
+
159
+
160
+
161
+ <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
162
+
163
+ <section class="content content-page">
164
+
165
+ <?php the_content(); ?>
166
+
167
+ </section>
168
+
169
+ <?php endwhile; endif; ?>
170
+
171
+
172
+
173
+ </article>
174
+
175
+
176
+
177
+
178
+
179
+ </main>
180
+
181
+ <!-- /l-main -->
182
+
183
+
184
+
185
+ </div>
186
+
187
+ <!-- /l-wrapper -->
188
+
189
+
190
+
191
+ <?php get_footer(); ?>
396
192
 
397
193
  ```
398
194
 
399
195
 
400
196
 
401
-
402
-
403
-
404
-
405
197
  ### 試したこと
406
198
 
407
199
  - メインテーマの、余白の部分をいじってみた(しかし、余白は消えなかった)
408
200
 
409
- - 余白の消し方についての記事を約1時間探した(しかし、見つからなかった)
201
+ - 余白の消し方についての記事を約8時間探した(しかし、見つからなかった)
410
-
411
-
412
-
202
+
203
+
204
+
413
- ### 補足情報(FW/ツールのバージョンなど)
205
+ ### 補足情報
414
206
 
415
207
 
416
208
 
417
209
  Wordpressのバージョンは5.4.2です。
418
210
 
419
211
  **使用中のテーマは「lionblog」です**
420
-
421
-
422
-
423
- ###追記:(私と同じ悩みを持ち、この記事に行き着いた方へ)改善するべきCSSはこちらになります。
424
-
425
- ここに、独自のクラスを入れることができれば、
426
-
427
- 余白を消せるはずです!
428
-
429
- ```改善するべきCSS
430
-
431
- <?php /* Template Name:シングルカラムTPL */?>
432
-
433
- <?php get_header(); ?>
434
-
435
-
436
-
437
- <!-- l-wrapper -->
438
-
439
- <div class="l-wrapper">
440
-
441
-
442
-
443
- <!-- l-main -->
444
-
445
- <main class="l-main l-main-single<?php if ( get_option('fit_theme_singleWidth') == 'value2' ):?> l-main-w740<?php endif; ?>
446
-
447
- <?php if ( get_option('fit_theme_singleWidth') == 'value3' ):?> l-main-w900<?php endif; ?>
448
-
449
- <?php if ( get_option('fit_theme_singleWidth') == 'value4' ):?> l-main-w100<?php endif; ?>">
450
-
451
-
452
-
453
- <?php fit_breadcrumb(); ?>
454
-
455
-
456
-
457
- <article>
458
-
459
- <h1 class="heading heading-primary"><?php the_title(); ?></h1>
460
-
461
-
462
-
463
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
464
-
465
- <section class="content content-page">
466
-
467
- <?php the_content(); ?>
468
-
469
- </section>
470
-
471
- <?php endwhile; endif; ?>
472
-
473
-
474
-
475
- </article>
476
-
477
-
478
-
479
-
480
-
481
- </main>
482
-
483
- <!-- /l-main -->
484
-
485
-
486
-
487
- </div>
488
-
489
- <!-- /l-wrapper -->
490
-
491
-
492
-
493
- <?php get_footer(); ?>
494
-
495
- ```

5

追記の追加

2020/07/13 10:24

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -420,7 +420,7 @@
420
420
 
421
421
 
422
422
 
423
- 追記:(私と同じ悩みを持ち、この記事に行き着いた方へ)改善するべきCSSはこちらになります。
423
+ ###追記:(私と同じ悩みを持ち、この記事に行き着いた方へ)改善するべきCSSはこちらになります。
424
424
 
425
425
  ここに、独自のクラスを入れることができれば、
426
426
 

4

追記の追加

2020/07/13 08:32

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -420,11 +420,11 @@
420
420
 
421
421
 
422
422
 
423
- 追記:(この記事を見つけて、私と同じ悩みを持っていた方へ)改善するべきCSSはこちらになります。
423
+ 追記:(私と同じ悩みを持ち、この記事に行き着いた方へ)改善するべきCSSはこちらになります。
424
424
 
425
425
  ここに、独自のクラスを入れることができれば、
426
426
 
427
- 余白を消せる...はずです!
427
+ 余白を消せるはずです!
428
428
 
429
429
  ```改善するべきCSS
430
430
 

3

追記の記入

2020/07/13 08:32

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -417,3 +417,79 @@
417
417
  Wordpressのバージョンは5.4.2です。
418
418
 
419
419
  **使用中のテーマは「lionblog」です**
420
+
421
+
422
+
423
+ 追記:(この記事を見つけて、私と同じ悩みを持っていた方へ)改善するべきCSSはこちらになります。
424
+
425
+ ここに、独自のクラスを入れることができれば、
426
+
427
+ 余白を消せる...はずです!
428
+
429
+ ```改善するべきCSS
430
+
431
+ <?php /* Template Name:シングルカラムTPL */?>
432
+
433
+ <?php get_header(); ?>
434
+
435
+
436
+
437
+ <!-- l-wrapper -->
438
+
439
+ <div class="l-wrapper">
440
+
441
+
442
+
443
+ <!-- l-main -->
444
+
445
+ <main class="l-main l-main-single<?php if ( get_option('fit_theme_singleWidth') == 'value2' ):?> l-main-w740<?php endif; ?>
446
+
447
+ <?php if ( get_option('fit_theme_singleWidth') == 'value3' ):?> l-main-w900<?php endif; ?>
448
+
449
+ <?php if ( get_option('fit_theme_singleWidth') == 'value4' ):?> l-main-w100<?php endif; ?>">
450
+
451
+
452
+
453
+ <?php fit_breadcrumb(); ?>
454
+
455
+
456
+
457
+ <article>
458
+
459
+ <h1 class="heading heading-primary"><?php the_title(); ?></h1>
460
+
461
+
462
+
463
+ <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
464
+
465
+ <section class="content content-page">
466
+
467
+ <?php the_content(); ?>
468
+
469
+ </section>
470
+
471
+ <?php endwhile; endif; ?>
472
+
473
+
474
+
475
+ </article>
476
+
477
+
478
+
479
+
480
+
481
+ </main>
482
+
483
+ <!-- /l-main -->
484
+
485
+
486
+
487
+ </div>
488
+
489
+ <!-- /l-wrapper -->
490
+
491
+
492
+
493
+ <?php get_footer(); ?>
494
+
495
+ ```

2

PHPコードの追加

2020/07/13 08:30

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,97 @@
32
32
 
33
33
 
34
34
 
35
- ###コード
35
+ ###1:PHPコード
36
+
37
+ ```PHP
38
+
39
+ // 固定ページレイアウト セッティング
40
+
41
+ $wp_customize->add_setting( 'fit_theme_pageLayout', array(
42
+
43
+ 'default' => 'value1',
44
+
45
+ 'type' => 'option',
46
+
47
+ 'sanitize_callback' => 'fit_sanitize_select',
48
+
49
+ ));
50
+
51
+ // 固定ページレイアウト コントロール
52
+
53
+ $wp_customize->add_control( 'fit_theme_pageLayout', array(
54
+
55
+ 'section' => 'fit_theme_section',
56
+
57
+ 'settings' => 'fit_theme_pageLayout',
58
+
59
+ 'description' => '固定ページのレイアウトを選択<br>',
60
+
61
+ 'type' => 'select',
62
+
63
+ 'choices' => array(
64
+
65
+ 'value1' => '2カラム(default)',
66
+
67
+ 'value2' => '1カラム',
68
+
69
+ ),
70
+
71
+ ));
72
+
73
+
74
+
75
+ //1カラム時の横幅 セッティング
76
+
77
+ $wp_customize->add_setting( 'fit_theme_singleWidth', array(
78
+
79
+ 'default' => 'value1',
80
+
81
+ 'type' => 'option',
82
+
83
+ 'sanitize_callback' => 'fit_sanitize_select',
84
+
85
+ ));
86
+
87
+ // 1カラム時の横幅 コントロール
88
+
89
+ $wp_customize->add_control( 'fit_theme_singleWidth', array(
90
+
91
+ 'section' => 'fit_theme_section',
92
+
93
+ 'settings' => 'fit_theme_singleWidth',
94
+
95
+ 'description' => '1カラム時のメインカラムの横幅を選択<br>
96
+
97
+ (アーカイブ・投稿・固定ページで適用されます)',
98
+
99
+ 'type' => 'select',
100
+
101
+ 'choices' => array(
102
+
103
+ 'value2' => '740px',
104
+
105
+ 'value1' => '820px(default)',
106
+
107
+ 'value3' => '900px',
108
+
109
+ 'value4' => '100%',
110
+
111
+ ),
112
+
113
+ ));
114
+
115
+ ```
116
+
117
+ *恐らく、ここの「1カラム時の横幅」という項目が、問題解決のカギとなっていると思います。
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+ ###2:CSSコード
36
126
 
37
127
  ```CSS
38
128
 
@@ -308,6 +398,10 @@
308
398
 
309
399
 
310
400
 
401
+
402
+
403
+
404
+
311
405
  ### 試したこと
312
406
 
313
407
  - メインテーマの、余白の部分をいじってみた(しかし、余白は消えなかった)

1

CSSコードの追加

2020/07/12 12:58

投稿

idealsblog
idealsblog

スコア4

test CHANGED
File without changes
test CHANGED
@@ -32,9 +32,279 @@
32
32
 
33
33
 
34
34
 
35
-
35
+ ###コード
36
+
36
-
37
+ ```CSS
38
+
37
-
39
+ html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{
40
+
41
+ margin:0;
42
+
43
+ padding:0;
44
+
45
+ }
46
+
47
+ h1,h2,h3,h4,h5,h6{font-size:100%;}
48
+
49
+ ol,ul,li,dl{list-style-position: inside;}
50
+
51
+ button,input,select,textarea{margin:0;}
52
+
53
+ html{
54
+
55
+ box-sizing:border-box;
56
+
57
+ line-height:1;
58
+
59
+ font-size: 62.5%;
60
+
61
+ }
62
+
63
+ *,*:before,*:after{box-sizing:inherit;}
64
+
65
+ img,embed,iframe,object,audio,video{max-width:100%;}
66
+
67
+ iframe{border:0;}
68
+
69
+ table{
70
+
71
+ border-collapse:collapse;
72
+
73
+ border-spacing:0;
74
+
75
+ }
76
+
77
+ td,th{
78
+
79
+ padding:0;
80
+
81
+ text-align:left;
82
+
83
+ }
84
+
85
+ hr{
86
+
87
+ height: 0;
88
+
89
+ border: 0;
90
+
91
+ }
92
+
93
+
94
+
95
+
96
+
97
+ /*ベース
98
+
99
+ /************************************************************/
100
+
101
+ body {
102
+
103
+ width:100%;
104
+
105
+ font-family: "Lato", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "MS Pゴシック", "MS PGothic", "sans-serif";
106
+
107
+ font-size: 1.4rem;
108
+
109
+ font-weight:500;
110
+
111
+ background:#F2F2F2;
112
+
113
+ color:#191919;
114
+
115
+ }
116
+
117
+ button, input, select, textarea{
118
+
119
+ font-family:inherit;
120
+
121
+ font-weight:inherit;
122
+
123
+ font-size: inherit;
124
+
125
+ }
126
+
127
+ a{
128
+
129
+ color:inherit;
130
+
131
+ text-decoration:none;
132
+
133
+ }
134
+
135
+
136
+
137
+
138
+
139
+ /*レイアウト
140
+
141
+ /************************************************************/
142
+
143
+
144
+
145
+ /*ヘッダー*/
146
+
147
+ .l-header{
148
+
149
+ display: flex;
150
+
151
+ flex-flow: column-reverse nowrap;
152
+
153
+ }
154
+
155
+
156
+
157
+ /*ヘッダーエクストラ*/
158
+
159
+ .l-hExtra{
160
+
161
+ position:relative;
162
+
163
+ width:100%;
164
+
165
+ background:#191919;
166
+
167
+ padding-top:10px;
168
+
169
+ }
170
+
171
+ .l-hExtra::after {
172
+
173
+ content: "";
174
+
175
+ display: block;
176
+
177
+ clear: both;
178
+
179
+ }
180
+
181
+
182
+
183
+ /*ヘッダーメイン*/
184
+
185
+ .l-hMain{
186
+
187
+ width:100%;
188
+
189
+ background:#323232;
190
+
191
+ }
192
+
193
+ .l-hMain::after {
194
+
195
+ content: "";
196
+
197
+ display: block;
198
+
199
+ clear: both;
200
+
201
+ }
202
+
203
+
204
+
205
+ /*ラッパー*/
206
+
207
+ .l-wrapper {
208
+
209
+ position:relative;
210
+
211
+ display: flex;
212
+
213
+ width:1100px;
214
+
215
+ max-width:95%;
216
+
217
+ margin: 0 auto;
218
+
219
+ }
220
+
221
+
222
+
223
+ /*メイン*/
224
+
225
+ .l-main {
226
+
227
+ width: 67.5%;
228
+
229
+ padding:60px 3.5% 60px 0;
230
+
231
+ }
232
+
233
+ .l-main::before {
234
+
235
+ position: absolute;
236
+
237
+ top: 0;
238
+
239
+ right:32.5%;
240
+
241
+ bottom: 0;
242
+
243
+ left:-100vw;
244
+
245
+ content: "";
246
+
247
+ background: #ffffff;
248
+
249
+ border-right:#E5E5E5 1px solid;
250
+
251
+ z-index: -99999;
252
+
253
+ }
254
+
255
+ .l-main.l-main-single {
256
+
257
+ width: 820px;
258
+
259
+ max-width:100%;
260
+
261
+ padding:60px 30px;
262
+
263
+ margin: 0 auto;
264
+
265
+ background: #ffffff;
266
+
267
+ border-left:#E5E5E5 1px solid;
268
+
269
+ border-right:#E5E5E5 1px solid;
270
+
271
+ }
272
+
273
+ .l-main.l-main-single::before {content: normal;}
274
+
275
+ .l-main.l-main-w740 {width: 740px;}
276
+
277
+ .l-main.l-main-w900 {width: 900px;}
278
+
279
+ .l-main.l-main-w100 {width: 100%;}
280
+
281
+
282
+
283
+ /*サイドバー*/
284
+
285
+ .l-sidebar {
286
+
287
+ width: 32.5%;
288
+
289
+ padding:60px 0 60px 3.5%;
290
+
291
+ }
292
+
293
+
294
+
295
+ /*フッター*/
296
+
297
+ .l-footer {
298
+
299
+ position:relative;
300
+
301
+ width:100%;
302
+
303
+ background:#191919;
304
+
305
+ }
306
+
307
+ ```
38
308
 
39
309
 
40
310